diff options
author | 2015-01-28 20:25:02 +0100 | |
---|---|---|
committer | 2015-02-07 17:09:25 +0800 | |
commit | d0e9ed58f46b5aa101f90834a87c4464814e1721 (patch) | |
tree | a5bd051985f8a49f02c101c92978635a150c0b10 | |
parent | staging: comedi: dt282x: condition with no effect - if identical to else (diff) | |
download | linux-dev-d0e9ed58f46b5aa101f90834a87c4464814e1721.tar.xz linux-dev-d0e9ed58f46b5aa101f90834a87c4464814e1721.zip |
staging: speakup: Remove unnecessary space
This patch fixes the checkpath.pl warning:
ERROR: space prohibited before that ',' (ctx:WxE)
+ MSG_FIRST_INDEX ,
And removes the unnecessary space.
Signed-off-by: Bastian Plettner <b.plettner@archlinux.info>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/speakup/i18n.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/speakup/i18n.h b/drivers/staging/speakup/i18n.h index 16a0871373d9..326d086f9d5a 100644 --- a/drivers/staging/speakup/i18n.h +++ b/drivers/staging/speakup/i18n.h @@ -3,7 +3,7 @@ /* Internationalization declarations */ enum msg_index_t { - MSG_FIRST_INDEX , + MSG_FIRST_INDEX, MSG_ANNOUNCEMENTS_START = MSG_FIRST_INDEX, MSG_BLANK = MSG_ANNOUNCEMENTS_START, MSG_IAM_ALIVE, |