summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorBertrik Sikken <bertrik@sikken.nl>2009-03-04 18:15:06 +0000
committerBertrik Sikken <bertrik@sikken.nl>2009-03-04 18:15:06 +0000
commit4f87abf90af67d23582156343ef7dbd66cd18aa8 (patch)
tree68109cb9147d7767f64e2ee5de150f609fea82fa /apps
parent23e28f2b0c871912f9f23993e754db3637b92f0e (diff)
downloadrockbox-4f87abf90af67d23582156343ef7dbd66cd18aa8.tar.gz
rockbox-4f87abf90af67d23582156343ef7dbd66cd18aa8.zip
Cosmetic fix: remove duplicate semicolons
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20198 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/codecs/libalac/alac.c4
-rw-r--r--apps/codecs/libmusepack/synth_filter.c2
-rw-r--r--apps/menus/display_menu.c2
-rw-r--r--apps/mpeg.c2
-rw-r--r--apps/plugins/goban/display.c2
-rw-r--r--apps/screens.c2
6 files changed, 7 insertions, 7 deletions
diff --git a/apps/codecs/libalac/alac.c b/apps/codecs/libalac/alac.c
index d747caeea7..112ad20bad 100644
--- a/apps/codecs/libalac/alac.c
+++ b/apps/codecs/libalac/alac.c
@@ -449,7 +449,7 @@ static void predictor_decompress_fir_adapt(int32_t *error_buffer,
449 predictor_coef_table[predictor_num]++; 449 predictor_coef_table[predictor_num]++;
450 val=-val; 450 val=-val;
451 } else { 451 } else {
452 predictor_coef_table[predictor_num]--;; 452 predictor_coef_table[predictor_num]--;
453 } 453 }
454 error_val -= ((val >> predictor_quantitization) * (4 - predictor_num)); 454 error_val -= ((val >> predictor_quantitization) * (4 - predictor_num));
455 } 455 }
@@ -522,7 +522,7 @@ static void predictor_decompress_fir_adapt(int32_t *error_buffer,
522 predictor_coef_table[predictor_num]++; 522 predictor_coef_table[predictor_num]++;
523 val=-val; 523 val=-val;
524 } else { 524 } else {
525 predictor_coef_table[predictor_num]--;; 525 predictor_coef_table[predictor_num]--;
526 } 526 }
527 error_val -= ((val >> predictor_quantitization) * (8 - predictor_num)); 527 error_val -= ((val >> predictor_quantitization) * (8 - predictor_num));
528 } 528 }
diff --git a/apps/codecs/libmusepack/synth_filter.c b/apps/codecs/libmusepack/synth_filter.c
index fb956fbff4..d8196eb40f 100644
--- a/apps/codecs/libmusepack/synth_filter.c
+++ b/apps/codecs/libmusepack/synth_filter.c
@@ -234,7 +234,7 @@ mpc_calculate_new_V ( const MPC_SAMPLE_FORMAT * Sample, MPC_SAMPLE_FORMAT * V )
234 B[ 4] = A[ 4] + A[11]; 234 B[ 4] = A[ 4] + A[11];
235 B[ 5] = A[ 5] + A[10]; 235 B[ 5] = A[ 5] + A[10];
236 B[ 6] = A[ 6] + A[ 9]; 236 B[ 6] = A[ 6] + A[ 9];
237 B[ 7] = A[ 7] + A[ 8];; 237 B[ 7] = A[ 7] + A[ 8];
238 B[ 8] = MPC_MULTIPLY_V((A[ 0] - A[15]), INVCOS02); 238 B[ 8] = MPC_MULTIPLY_V((A[ 0] - A[15]), INVCOS02);
239 B[ 9] = MPC_MULTIPLY_V((A[ 1] - A[14]), INVCOS06); 239 B[ 9] = MPC_MULTIPLY_V((A[ 1] - A[14]), INVCOS06);
240 B[10] = MPC_MULTIPLY_V((A[ 2] - A[13]), INVCOS10); 240 B[10] = MPC_MULTIPLY_V((A[ 2] - A[13]), INVCOS10);
diff --git a/apps/menus/display_menu.c b/apps/menus/display_menu.c
index d70cf37687..b1d3495ff2 100644
--- a/apps/menus/display_menu.c
+++ b/apps/menus/display_menu.c
@@ -452,7 +452,7 @@ static int peak_meter_max(void) {
452 452
453 /* for dBfs scale */ 453 /* for dBfs scale */
454 int range_min = -global_settings.peak_meter_min; 454 int range_min = -global_settings.peak_meter_min;
455 int max = -global_settings.peak_meter_max;; 455 int max = -global_settings.peak_meter_max;
456 456
457 retval = set_int(str(LANG_PM_MAX), str(LANG_PM_DBFS), UNIT_DB, 457 retval = set_int(str(LANG_PM_MAX), str(LANG_PM_DBFS), UNIT_DB,
458 &max, NULL, 1, range_min, 0, NULL); 458 &max, NULL, 1, range_min, 0, NULL);
diff --git a/apps/mpeg.c b/apps/mpeg.c
index dcccb98d17..cde72ab54f 100644
--- a/apps/mpeg.c
+++ b/apps/mpeg.c
@@ -2554,7 +2554,7 @@ unsigned long audio_num_recorded_bytes(void)
2554 if(num_bytes < 0) 2554 if(num_bytes < 0)
2555 num_bytes += audiobuflen; 2555 num_bytes += audiobuflen;
2556 2556
2557 return num_bytes;; 2557 return num_bytes;
2558 } 2558 }
2559 else 2559 else
2560 return num_rec_bytes; 2560 return num_rec_bytes;
diff --git a/apps/plugins/goban/display.c b/apps/plugins/goban/display.c
index 55ea0d6a4a..8c18039759 100644
--- a/apps/plugins/goban/display.c
+++ b/apps/plugins/goban/display.c
@@ -899,7 +899,7 @@ setup_display (void)
899 899
900 if (board_height >= 7) 900 if (board_height >= 7)
901 { 901 {
902 start_y = 3;; 902 start_y = 3;
903 } 903 }
904 else 904 else
905 { 905 {
diff --git a/apps/screens.c b/apps/screens.c
index 8a787a5ca1..c327e65037 100644
--- a/apps/screens.c
+++ b/apps/screens.c
@@ -537,7 +537,7 @@ bool set_time_screen(const char* title, struct tm *tm)
537 { 537 {
538 if(i==3) /* second row */ 538 if(i==3) /* second row */
539 { 539 {
540 j = weekday_width + separator_width;; 540 j = weekday_width + separator_width;
541 prev_line_height *= 2; 541 prev_line_height *= 2;
542 } 542 }
543 screens[s].getstringsize(ptr[i], &width, NULL); 543 screens[s].getstringsize(ptr[i], &width, NULL);