diff options
author | Christopher Brannon <chris@the-brannons.com> | 2012-06-16 16:55:20 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-06-18 17:13:06 -0700 |
commit | 4ea418b8b2fa8a70d0fcc8231b65e67b3a72984b (patch) | |
tree | 638f7e603fe3b87e18449c7bb6c01bce2d9d0513 | |
parent | dc348147a9e1ba84395d1e585d26af44f0ca4e29 (diff) | |
download | linux-4ea418b8b2fa8a70d0fcc8231b65e67b3a72984b.tar.gz linux-4ea418b8b2fa8a70d0fcc8231b65e67b3a72984b.tar.bz2 linux-4ea418b8b2fa8a70d0fcc8231b65e67b3a72984b.zip |
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>
-rw-r--r-- | drivers/staging/speakup/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/speakup/main.c b/drivers/staging/speakup/main.c index 92b34e29ad06..40e2488b9679 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; |