Commit 4cb3150a authored by Sreya Mittal's avatar Sreya Mittal Committed by Greg Kroah-Hartman

staging: speakup: Align with parentheses

Align next line of print statements
to the right of open parentheses.
Signed-off-by: default avatarSreya Mittal <sreyamittal5@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5e38c984
...@@ -117,7 +117,7 @@ static void say_key(int key) ...@@ -117,7 +117,7 @@ static void say_key(int key)
} }
if ((key > 0) && (key <= num_key_names)) if ((key > 0) && (key <= num_key_names))
synth_printf(" %s\n", synth_printf(" %s\n",
spk_msg_get(MSG_KEYNAMES_START + (key - 1))); spk_msg_get(MSG_KEYNAMES_START + (key - 1)));
} }
static int help_init(void) static int help_init(void)
...@@ -182,7 +182,7 @@ int spk_handle_help(struct vc_data *vc, u_char type, u_char ch, u_short key) ...@@ -182,7 +182,7 @@ int spk_handle_help(struct vc_data *vc, u_char type, u_char ch, u_short key)
name = NULL; name = NULL;
if ((type != KT_SPKUP) && (key > 0) && (key <= num_key_names)) { if ((type != KT_SPKUP) && (key > 0) && (key <= num_key_names)) {
synth_printf("%s\n", synth_printf("%s\n",
spk_msg_get(MSG_KEYNAMES_START + key - 1)); spk_msg_get(MSG_KEYNAMES_START + key - 1));
return 1; return 1;
} }
for (i = 0; funcvals[i] != 0 && !name; i++) { for (i = 0; funcvals[i] != 0 && !name; i++) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment