Staging: speakup: i18n.c: cleaned up file

Cleaned up file with the use of checkpatch.pl.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Tracey Dent 2010-10-11 00:00:44 -04:00 committed by Greg Kroah-Hartman
parent 801089e68e
commit d7cf430c54
1 changed files with 5 additions and 5 deletions

View File

@ -9,7 +9,7 @@
#include "spk_priv.h"
static char *speakup_msgs[MSG_LAST_INDEX];
static char *speakup_default_msgs [MSG_LAST_INDEX] = {
static char *speakup_default_msgs[MSG_LAST_INDEX] = {
[MSG_BLANK] = "blank",
[MSG_IAM_ALIVE] = "I'm aLive!",
[MSG_YOU_KILLED_SPEAKUP] = "You killed speakup!",
@ -349,7 +349,7 @@ static char *speakup_default_msgs [MSG_LAST_INDEX] = {
[MSG_FUNCNAME_WORD_SAY_PREVIOUS] = "word, say previous",
};
static struct msg_group_t all_groups [] = {
static struct msg_group_t all_groups[] = {
{
.name = "ctl_keys",
.start = MSG_CTL_START,
@ -549,7 +549,7 @@ ssize_t msg_set(enum msg_index_t index, char *text, size_t length)
memcpy(newstr, text, length);
newstr[length] = '\0';
if ((index >= MSG_FORMATTED_START && index <= MSG_FORMATTED_END)
&& ! fmt_validate(speakup_default_msgs[index], newstr)) {
&& !fmt_validate(speakup_default_msgs[index], newstr)) {
return -EINVAL;
}
spk_lock(flags);