summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorPanir.Nyan2014-12-24 05:07:32 +0100
committerGreg Kroah-Hartman2015-01-18 01:14:16 +0100
commit25c048680b53c689ec918b3adfcfe62e1f03d4f0 (patch)
tree6af85906a8ceca1a177426223580e2f9e6bda4b9 /drivers
parentstaging: speakup: Split the comment to fit the length (diff)
downloadkernel-qcow2-linux-25c048680b53c689ec918b3adfcfe62e1f03d4f0.tar.gz
kernel-qcow2-linux-25c048680b53c689ec918b3adfcfe62e1f03d4f0.tar.xz
kernel-qcow2-linux-25c048680b53c689ec918b3adfcfe62e1f03d4f0.zip
staging: speakup: Combine the consecutive string
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>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/staging/speakup/kobjects.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/speakup/kobjects.c b/drivers/staging/speakup/kobjects.c
index b12c76de60b0..3708bc13ae86 100644
--- a/drivers/staging/speakup/kobjects.c
+++ b/drivers/staging/speakup/kobjects.c
@@ -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';