diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2009-03-04 18:15:06 +0000 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2009-03-04 18:15:06 +0000 |
| commit | 4f87abf90af67d23582156343ef7dbd66cd18aa8 (patch) | |
| tree | 68109cb9147d7767f64e2ee5de150f609fea82fa /apps | |
| parent | 23e28f2b0c871912f9f23993e754db3637b92f0e (diff) | |
| download | rockbox-4f87abf90af67d23582156343ef7dbd66cd18aa8.zip rockbox-4f87abf90af67d23582156343ef7dbd66cd18aa8.tar.gz rockbox-4f87abf90af67d23582156343ef7dbd66cd18aa8.tar.bz2 rockbox-4f87abf90af67d23582156343ef7dbd66cd18aa8.tar.xz | |
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.c | 4 | ||||
| -rw-r--r-- | apps/codecs/libmusepack/synth_filter.c | 2 | ||||
| -rw-r--r-- | apps/menus/display_menu.c | 2 | ||||
| -rw-r--r-- | apps/mpeg.c | 2 | ||||
| -rw-r--r-- | apps/plugins/goban/display.c | 2 | ||||
| -rw-r--r-- | apps/screens.c | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/apps/codecs/libalac/alac.c b/apps/codecs/libalac/alac.c index d747cae..112ad20 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, predictor_coef_table[predictor_num]++; val=-val; } else { - predictor_coef_table[predictor_num]--;; + predictor_coef_table[predictor_num]--; } error_val -= ((val >> predictor_quantitization) * (4 - predictor_num)); } @@ -522,7 +522,7 @@ static void predictor_decompress_fir_adapt(int32_t *error_buffer, predictor_coef_table[predictor_num]++; val=-val; } else { - predictor_coef_table[predictor_num]--;; + predictor_coef_table[predictor_num]--; } error_val -= ((val >> predictor_quantitization) * (8 - predictor_num)); } diff --git a/apps/codecs/libmusepack/synth_filter.c b/apps/codecs/libmusepack/synth_filter.c index fb956fb..d8196eb 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 ) B[ 4] = A[ 4] + A[11]; B[ 5] = A[ 5] + A[10]; B[ 6] = A[ 6] + A[ 9]; - B[ 7] = A[ 7] + A[ 8];; + B[ 7] = A[ 7] + A[ 8]; B[ 8] = MPC_MULTIPLY_V((A[ 0] - A[15]), INVCOS02); B[ 9] = MPC_MULTIPLY_V((A[ 1] - A[14]), INVCOS06); 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 d70cf37..b1d3495 100644 --- a/apps/menus/display_menu.c +++ b/apps/menus/display_menu.c @@ -452,7 +452,7 @@ static int peak_meter_max(void) { /* for dBfs scale */ int range_min = -global_settings.peak_meter_min; - int max = -global_settings.peak_meter_max;; + int max = -global_settings.peak_meter_max; retval = set_int(str(LANG_PM_MAX), str(LANG_PM_DBFS), UNIT_DB, &max, NULL, 1, range_min, 0, NULL); diff --git a/apps/mpeg.c b/apps/mpeg.c index dcccb98..cde72ab 100644 --- a/apps/mpeg.c +++ b/apps/mpeg.c @@ -2554,7 +2554,7 @@ unsigned long audio_num_recorded_bytes(void) if(num_bytes < 0) num_bytes += audiobuflen; - return num_bytes;; + return num_bytes; } else return num_rec_bytes; diff --git a/apps/plugins/goban/display.c b/apps/plugins/goban/display.c index 55ea0d6..8c18039 100644 --- a/apps/plugins/goban/display.c +++ b/apps/plugins/goban/display.c @@ -899,7 +899,7 @@ setup_display (void) if (board_height >= 7) { - start_y = 3;; + start_y = 3; } else { diff --git a/apps/screens.c b/apps/screens.c index 8a787a5..c327e65 100644 --- a/apps/screens.c +++ b/apps/screens.c @@ -537,7 +537,7 @@ bool set_time_screen(const char* title, struct tm *tm) { if(i==3) /* second row */ { - j = weekday_width + separator_width;; + j = weekday_width + separator_width; prev_line_height *= 2; } screens[s].getstringsize(ptr[i], &width, NULL); |