Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 25c04868 authored by Panir.Nyan's avatar Panir.Nyan Committed by Greg Kroah-Hartman
Browse files

staging: speakup: Combine the consecutive string



Combine the consecutive string

Signed-off-by: default avatarPanir Nyan <Panir.Nyan@gmail.com>
Acked-by: default avatarSamuel Thibault <samuel.thibault@ens-lyon.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 05719ac7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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';