Skip to content

Commit

Permalink
staging: speakup: Align with parentheses
Browse files Browse the repository at this point in the history
Align next line of print statements
to the right of open parentheses.

Signed-off-by: Sreya Mittal <sreyamittal5@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Sreya Mittal authored and Greg Kroah-Hartman committed Mar 6, 2017
1 parent 5e38c98 commit 4cb3150
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/speakup/keyhelp.c
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ static void say_key(int key)
}
if ((key > 0) && (key <= num_key_names))
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)
Expand Down Expand Up @@ -182,7 +182,7 @@ int spk_handle_help(struct vc_data *vc, u_char type, u_char ch, u_short key)
name = NULL;
if ((type != KT_SPKUP) && (key > 0) && (key <= num_key_names)) {
synth_printf("%s\n",
spk_msg_get(MSG_KEYNAMES_START + key - 1));
spk_msg_get(MSG_KEYNAMES_START + key - 1));
return 1;
}
for (i = 0; funcvals[i] != 0 && !name; i++) {
Expand Down

0 comments on commit 4cb3150

Please sign in to comment.