Enumeration had grew but hadn't changed string array accordingly.

This commit is contained in:
rocky
2003-06-11 10:57:02 +00:00
parent c9e2aa9e82
commit fee279a0cb
3 changed files with 8 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
/* -*- c -*-
$Id: cdio.h,v 1.13 2003/06/07 20:42:49 rocky Exp $
$Id: cdio.h,v 1.14 2003/06/11 10:57:02 rocky Exp $
Copyright (C) 2001 Herbert Valerio Riedel <hvr@gnu.org>
Copyright (C) 2003 Rocky Bernstein <rocky@panix.com>
@@ -99,7 +99,7 @@ extern "C" {
} track_format_t;
/* Printable tags for above enumeration. */
extern const char *track_format2str[5];
extern const char *track_format2str[6];
/*!
Eject media in CD drive if there is a routine to do so.

View File

@@ -1,5 +1,5 @@
/*
$Id: cdio.c,v 1.19 2003/06/07 20:42:49 rocky Exp $
$Id: cdio.c,v 1.20 2003/06/11 10:57:02 rocky Exp $
Copyright (C) 2003 Rocky Bernstein <rocky@panix.com>
Copyright (C) 2001 Herbert Valerio Riedel <hvr@gnu.org>
@@ -35,12 +35,12 @@
#include <cdio/logging.h>
#include "cdio_private.h"
static const char _rcsid[] = "$Id: cdio.c,v 1.19 2003/06/07 20:42:49 rocky Exp $";
static const char _rcsid[] = "$Id: cdio.c,v 1.20 2003/06/11 10:57:02 rocky Exp $";
const char *track_format2str[5] =
const char *track_format2str[6] =
{
"audio", "CD-i", "XA", "data", "error"
"audio", "CD-i", "XA", "data", "PSX", "error"
};
/* The below array gives of the drivers that are currently available for

View File

@@ -1,4 +1,4 @@
# $Id: Makefile.am,v 1.7 2003/06/01 21:05:45 rocky Exp $
# $Id: Makefile.am,v 1.8 2003/06/11 10:57:02 rocky Exp $
#
# Copyright (C) 2003 Rocky Bernstein <rocky@panix.com>
#
@@ -36,5 +36,5 @@ else
EXTRA_DIST = cdinfo-linux.c cd-info.c
endif
INCLUDES = -I$(top_srcdir) $(LIBCDIO_CFLAGS)
INCLUDES = -I$(top_srcdir) $(LIBPOPT_CFLAGS) $(LIBCDIO_CFLAGS)