Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1600033
| From | Arushi Singhal <arushisinghal19971997@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v3 2/2] staging: speakup: fix "Alignment match open parenthesis" |
| Date | 2017-03-14 06:20 +0100 |
| Message-ID | <tkN2h-3GC-13@gated-at.bofh.it> (permalink) |
| References | <tkN2h-3GC-9@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Alig arguments with open parenthesis.
Signed-off-by: Arushi Singhal <arushisinghal19971997@gmail.com>
---
changes in v3
- Improve the commit message.
drivers/staging/speakup/kobjects.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/speakup/kobjects.c b/drivers/staging/speakup/kobjects.c
index 8a586323b728..ca85476e3ff7 100644
--- a/drivers/staging/speakup/kobjects.c
+++ b/drivers/staging/speakup/kobjects.c
@@ -93,7 +93,7 @@ static void report_char_chartab_status(int reset, int received, int used,
} else if (received) {
len = snprintf(buf, sizeof(buf),
" updated %d of %d %s\n",
- used, received, object_type[do_characters]);
+ used, received, object_type[do_characters]);
if (rejected)
snprintf(buf + (len - 1), sizeof(buf) - (len - 1),
" with %d reject%s\n",
--
2.11.0
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH v3 0/2] staging: speakup: checkpatch guided cleanups. Arushi Singhal <arushisinghal19971997@gmail.com> - 2017-03-14 06:20 +0100
[PATCH v3 1/2] staging: speakup: Add blank line after declarations Arushi Singhal <arushisinghal19971997@gmail.com> - 2017-03-14 06:20 +0100
[PATCH v3 2/2] staging: speakup: fix "Alignment match open parenthesis" Arushi Singhal <arushisinghal19971997@gmail.com> - 2017-03-14 06:20 +0100
Re: [PATCH v3 2/2] staging: speakup: fix "Alignment match open parenthesis" Greg KH <gregkh@linuxfoundation.org> - 2017-03-16 03:30 +0100
csiph-web