Browse Source

Removed trailing whitespace.

master
Svend Sorensen 19 years ago
parent
commit
1e8087e1b8
9 changed files with 13 additions and 13 deletions
  1. +3
    -3
      lib/cd.h
  2. +1
    -1
      lib/cdtext.c
  3. +1
    -1
      lib/cdtext.h
  4. +1
    -1
      lib/cue_parse.y
  5. +1
    -1
      lib/cue_print.c
  6. +1
    -1
      lib/cuefile.c
  7. +1
    -1
      lib/cuefile.h
  8. +3
    -3
      lib/toc_parse.y
  9. +1
    -1
      tools/cueconvert.c

+ 3
- 3
lib/cd.h View File

@@ -1,4 +1,4 @@
/*
/*
* cd.h -- cd structure
*
* Copyright (C) 2004 Svend Sorensen
@@ -79,7 +79,7 @@ Cd *cd_init ();
void cd_dump (Cd *cd);

/*
* Cd functions
* Cd functions
*/

void cd_set_mode (Cd *cd, int mode);
@@ -88,7 +88,7 @@ int cd_get_mode (Cd *cd);
void cd_set_catalog (Cd *cd, char *catalog);
char *cd_get_catalog (Cd *cd);

/*
/*
* return pointer to cd's Cdtext
*/
Cdtext *cd_get_cdtext (Cd *cd);


+ 1
- 1
lib/cdtext.c View File

@@ -1,4 +1,4 @@
/*
/*
* cdtext.c -- cdtext data structure and functions
*
* Copyright (C) 2004 Svend Sorensen


+ 1
- 1
lib/cdtext.h View File

@@ -46,7 +46,7 @@ Cdtext *cdtext_init ();
/* release a Cdtext */
void cdtext_delete (Cdtext *cdtext);

/* returns non-zero if there are no CD-TEXT fields set, zero otherwise */
/* returns non-zero if there are no CD-TEXT fields set, zero otherwise */
int cdtext_is_empty (Cdtext *cdtext);

/* set CD-TEXT field to value for PTI pti */


+ 1
- 1
lib/cue_parse.y View File

@@ -17,7 +17,7 @@
extern int cue_yylex();
void yyerror (char *s);

static Cd *cd = NULL;
static Cd *cd = NULL;
static Track *track = NULL;
static Track *prev_track = NULL;
static Cdtext *cdtext = NULL;


+ 1
- 1
lib/cue_print.c View File

@@ -43,7 +43,7 @@ void cue_print_track (FILE *fp, Track *track, int trackno)
int i; /* index */

if (NULL != track_get_filename(track)) {
/*
/*
* always print filename for track 1, afterwards only
* print filename if it differs from the previous track
*/


+ 1
- 1
lib/cuefile.c View File

@@ -44,7 +44,7 @@ Cd *cf_parse (char *name, int *format)
return cd;
}

int cf_print (char *name, int *format, Cd *cd)
int cf_print (char *name, int *format, Cd *cd)
{
FILE *fp = NULL;



+ 1
- 1
lib/cuefile.h View File

@@ -1,4 +1,4 @@
/*
/*
* cuefile.h -- cue/toc public declarations
*
* Copyright (C) 2004 Svend Sorensen


+ 3
- 3
lib/toc_parse.y View File

@@ -33,7 +33,7 @@ static Cdtext *cdtext = NULL;
%token <sval> STRING

/* global (header) */
%token CATALOG
%token CATALOG

%token <ival> CD_DA
%token <ival> CD_ROM
@@ -65,7 +65,7 @@ static Cdtext *cdtext = NULL;
%token DATAFILE
%token FIFO
%token START
%token PREGAP
%token PREGAP
%token INDEX

/* CD-TEXT */
@@ -153,7 +153,7 @@ track_def
;

track_modes
: track_mode
: track_mode
| track_mode track_sub_mode { track_set_sub_mode(track, $2); }
;



+ 1
- 1
tools/cueconvert.c View File

@@ -105,7 +105,7 @@ int main (int argc, char **argv)
break;
}
}
if (optind == argc) {
convert("-", iformat, "-", oformat);
} else if (optind == argc - 1) {


Loading…
Cancel
Save