aboutsummaryrefslogtreecommitdiff
path: root/drivers/staging/speakup/main.c
diff options
context:
space:
mode:
authorChristopher Brannon <chris@the-brannons.com>2012-06-16 16:55:20 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-06-18 17:13:06 -0700
commit4ea418b8b2fa8a70d0fcc8231b65e67b3a72984b (patch)
tree638f7e603fe3b87e18449c7bb6c01bce2d9d0513 /drivers/staging/speakup/main.c
parentdc348147a9e1ba84395d1e585d26af44f0ca4e29 (diff)
Staging: speakup: fix an improperly-declared variable.
A local static variable was declared as a pointer to a string constant. We're assigning to the underlying memory, so it needs to be an array instead. Signed-off-by: Christopher Brannon <chris@the-brannons.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/speakup/main.c')
-rw-r--r--drivers/staging/speakup/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/speakup/main.c b/drivers/staging/speakup/main.c
index 92b34e29ad0..40e2488b967 100644
--- a/drivers/staging/speakup/main.c
+++ b/drivers/staging/speakup/main.c
@@ -1854,7 +1854,7 @@ static void speakup_bits(struct vc_data *vc)
static int handle_goto(struct vc_data *vc, u_char type, u_char ch, u_short key)
{
- static u_char *goto_buf = "\0\0\0\0\0\0";
+ static u_char goto_buf[8];
static int num;
int maxlen, go_pos;
char *cp;