Skip to content

Commit 4cb3150

Browse files
Sreya1gregkh
authored andcommitted
staging: speakup: Align with parentheses
Align next line of print statements to the right of open parentheses. Signed-off-by: Sreya Mittal <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 5e38c98 commit 4cb3150

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/staging/speakup/keyhelp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ static void say_key(int key)
117117
}
118118
if ((key > 0) && (key <= num_key_names))
119119
synth_printf(" %s\n",
120-
spk_msg_get(MSG_KEYNAMES_START + (key - 1)));
120+
spk_msg_get(MSG_KEYNAMES_START + (key - 1)));
121121
}
122122

123123
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)
182182
name = NULL;
183183
if ((type != KT_SPKUP) && (key > 0) && (key <= num_key_names)) {
184184
synth_printf("%s\n",
185-
spk_msg_get(MSG_KEYNAMES_START + key - 1));
185+
spk_msg_get(MSG_KEYNAMES_START + key - 1));
186186
return 1;
187187
}
188188
for (i = 0; funcvals[i] != 0 && !name; i++) {

0 commit comments

Comments
 (0)