]> git.karo-electronics.de Git - linux-beck.git/commitdiff
staging: speakup: Combine the consecutive string
authorPanir.Nyan <panir.nyan@gmail.com>
Wed, 24 Dec 2014 04:07:32 +0000 (04:07 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 18 Jan 2015 00:14:16 +0000 (16:14 -0800)
Combine the consecutive string

Signed-off-by: Panir Nyan <Panir.Nyan@gmail.com>
Acked-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/speakup/kobjects.c

index b12c76de60b01a9fa6c59115db732a4a3255a446..3708bc13ae86eed59570bdfad3fa1953ee04293e 100644 (file)
@@ -566,7 +566,7 @@ ssize_t spk_var_show(struct kobject *kobj, struct kobj_attribute *attr,
                                if (ch >= ' ' && ch < '~')
                                        *cp1++ = ch;
                                else
-                                       cp1 += sprintf(cp1, "\\""x%02x", ch);
+                                       cp1 += sprintf(cp1, "\\x%02x", ch);
                        }
                        *cp1++ = '"';
                        *cp1++ = '\n';