summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2008-08-07 11:48:56 +0000
committerNils Wallménius <nils@rockbox.org>2008-08-07 11:48:56 +0000
commitc49438419de3ea42d57db7307a01ea6a3e519e75 (patch)
treec246c15458224dc6128260af4559039bf58c9ac1 /apps
parent1ac260c0e6a3417791687081cec4930f057ad344 (diff)
downloadrockbox-c49438419de3ea42d57db7307a01ea6a3e519e75.tar.gz
rockbox-c49438419de3ea42d57db7307a01ea6a3e519e75.zip
Style police, trigStat -> trig_stat
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18209 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/recorder/recording.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c
index 7dfa16cb93..c3f0460128 100644
--- a/apps/recorder/recording.c
+++ b/apps/recorder/recording.c
@@ -1202,12 +1202,12 @@ bool recording_screen(bool no_source)
1202 } 1202 }
1203 else 1203 else
1204 { 1204 {
1205 int trigStat = peak_meter_trigger_status(); 1205 int trig_stat = peak_meter_trigger_status();
1206 /* 1206 /*
1207 * other trigger stati than trig_off and trig_steady 1207 * other trigger stati than trig_off and trig_steady
1208 * already imply that we are recording. 1208 * already imply that we are recording.
1209 */ 1209 */
1210 if (trigStat == TRIG_STEADY) 1210 if (trig_stat == TRIG_STEADY)
1211 { 1211 {
1212 if (--led_countdown <= 0) 1212 if (--led_countdown <= 0)
1213 { 1213 {