summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2007-10-10 06:02:08 +0000
committerJens Arnold <amiconn@rockbox.org>2007-10-10 06:02:08 +0000
commit064de4ce4d30ab1960c9a08a4056220e3adea4df (patch)
tree81160d3fef718b933d9994f3189e9cba3981f79b
parent100d343963ad2cc86727be8d438eb7e66ef40db3 (diff)
downloadrockbox-064de4ce4d30ab1960c9a08a4056220e3adea4df.zip
rockbox-064de4ce4d30ab1960c9a08a4056220e3adea4df.tar.gz
rockbox-064de4ce4d30ab1960c9a08a4056220e3adea4df.tar.bz2
rockbox-064de4ce4d30ab1960c9a08a4056220e3adea4df.tar.xz
Slight code policing.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15065 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/player/keyboard.c17
-rw-r--r--apps/recorder/keyboard.c17
2 files changed, 18 insertions, 16 deletions
diff --git a/apps/player/keyboard.c b/apps/player/keyboard.c
index 6baa0d5..c89161c 100644
--- a/apps/player/keyboard.c
+++ b/apps/player/keyboard.c
@@ -76,14 +76,15 @@ static void kbd_spellchar(char c)
{
if (talk_menus_enabled()) /* voice UI? */
{
- unsigned char tmp[5];
- /* store char to pass to talk_spell */
- unsigned char* utf8 = utf8encode(c, tmp);
- *utf8 = 0;
-
- if(c == ' ')
- talk_id(VOICE_BLANK, false);
- else talk_spell(tmp, false);
+ unsigned char tmp[5];
+ /* store char to pass to talk_spell */
+ unsigned char* utf8 = utf8encode(c, tmp);
+ *utf8 = 0;
+
+ if(c == ' ')
+ talk_id(VOICE_BLANK, false);
+ else
+ talk_spell(tmp, false);
}
}
diff --git a/apps/recorder/keyboard.c b/apps/recorder/keyboard.c
index 7a46431..fbfb559 100644
--- a/apps/recorder/keyboard.c
+++ b/apps/recorder/keyboard.c
@@ -192,14 +192,15 @@ static void kbd_spellchar(unsigned short c)
{
if (talk_menus_enabled()) /* voice UI? */
{
- unsigned char tmp[5];
- /* store char to pass to talk_spell */
- unsigned char* utf8 = utf8encode(c, tmp);
- *utf8 = 0;
-
- if(c == ' ')
- talk_id(VOICE_BLANK, false);
- else talk_spell(tmp, false);
+ unsigned char tmp[5];
+ /* store char to pass to talk_spell */
+ unsigned char* utf8 = utf8encode(c, tmp);
+ *utf8 = 0;
+
+ if(c == ' ')
+ talk_id(VOICE_BLANK, false);
+ else
+ talk_spell(tmp, false);
}
}