Remove white space on empty lines

This commit is contained in:
Svend Sorensen
2013-08-16 13:28:11 -07:00
parent 017f86aef1
commit 7891a29fca
4 changed files with 5 additions and 5 deletions

View File

@@ -75,7 +75,7 @@ def convert(iformat, oformat, text):
command += " -i cue" command += " -i cue"
elif iformat == "toc": elif iformat == "toc":
command += " -i toc" command += " -i toc"
if oformat == "cue": if oformat == "cue":
command += " -o cue" command += " -o cue"
elif oformat == "toc": elif oformat == "toc":

View File

@@ -63,7 +63,7 @@ int cf_print(char *name, int *format, Cd *cd)
fprintf(stderr, "%s: error opening file\n", name); fprintf(stderr, "%s: error opening file\n", name);
return -1; return -1;
} }
switch (*format) { switch (*format) {
case CUE: case CUE:
cue_print(fp, cd); cue_print(fp, cd);

View File

@@ -127,7 +127,7 @@ disc_mode
| CD_ROM | CD_ROM
| CD_ROM_XA | CD_ROM_XA
; ;
track_list track_list
: track : track
| track_list track | track_list track
@@ -149,7 +149,7 @@ new_track
track_add_index(track, 0); track_add_index(track, 0);
} }
; ;
track_def track_def
: TRACK track_modes '\n' { track_set_mode(track, $2); } : TRACK track_modes '\n' { track_set_mode(track, $2); }
; ;

View File

@@ -301,7 +301,7 @@ void cd_printf(char *format, Cd *cd, int trackno)
conv_length++; conv_length++;
c++; c++;
} }
/* precision */ /* precision */
/* '*' not recognized */ /* '*' not recognized */
if ('.' == *c) { if ('.' == *c) {