Commit 9eca657f authored by Walt Feasel's avatar Walt Feasel Committed by Greg Kroah-Hartman
Browse files

staging: speakup: varhandlers.c Align parenthesis



Make suggested checkpatch modification for
CHECK: Alignment should match open parenthesis

Signed-off-by: default avatarWalt Feasel <waltfeasel@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 26ce8a4f
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -237,8 +237,7 @@ int spk_set_num_var(int input, struct st_var_header *var, int how)
	if (!var_data->u.n.out_str)
		l = sprintf(cp, var_data->u.n.synth_fmt, (int)val);
	else
		l = sprintf(cp,
			var_data->u.n.synth_fmt, var_data->u.n.out_str[val]);
		l = sprintf(cp,	var_data->u.n.synth_fmt, var_data->u.n.out_str[val]);
	synth_printf("%s", cp);
	return 0;
}