Skip to content

Commit

Permalink
Make cue.c build again after changes in r833 broke it.
Browse files Browse the repository at this point in the history
git-svn-id: svn://svn.debian.org/debburn/cdrkit/trunk@838 a95a6be8-091b-0410-adaf-d31e6857962f
  • Loading branch information
93sam committed Nov 27, 2009
1 parent 7a4476a commit 2fadf5b
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions wodim/cue.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,18 @@ typedef struct state {
int flags;
} state_t;

static char linebuf[4096];
static char *fname;
static char *linep;
static char *wordendp;
static char wordendc;
static int olinelen;
static int linelen;
static int lineno;

static char worddelim[] = "=:,/";
static char nulldelim[] = "";

#define STATE_NONE 0
#define STATE_POSTGAP 1
#define STATE_TRACK 2
Expand Down Expand Up @@ -990,18 +1002,6 @@ lookup(char *word, keyw_t table[])
* Parser low level functions start here...
*/

static char linebuf[4096];
static char *fname;
static char *linep;
static char *wordendp;
static char wordendc;
static int olinelen;
static int linelen;
static int lineno;

static char worddelim[] = "=:,/";
static char nulldelim[] = "";

static void
wdebug()
{
Expand Down

0 comments on commit 2fadf5b

Please sign in to comment.