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

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

View File

@@ -127,7 +127,7 @@ disc_mode
| CD_ROM
| CD_ROM_XA
;
track_list
: track
| track_list track
@@ -149,7 +149,7 @@ new_track
track_add_index(track, 0);
}
;
track_def
: 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++;
c++;
}
/* precision */
/* '*' not recognized */
if ('.' == *c) {