diff --git a/lib/driver/cd_types.c b/lib/driver/cd_types.c index 31df5f8e..cda0758f 100644 --- a/lib/driver/cd_types.c +++ b/lib/driver/cd_types.c @@ -1,5 +1,5 @@ /* - $Id: cd_types.c,v 1.3 2005/02/17 11:54:28 rocky Exp $ + $Id: cd_types.c,v 1.4 2006/02/10 18:04:17 rocky Exp $ Copyright (C) 2003, 2004, 2005 Rocky Bernstein @@ -60,6 +60,13 @@ and */ +/** The below variables are trickery to force enum symbol values to be + recorded in debug symbol tables. They are used to allow one to refer + to the enumeration value names in the typedefs above in a debugger + and debugger expressions. +*/ +cdio_fs_cap_t debug_cdio_fs_cap_t; + static char buffer[6][CDIO_CD_FRAMESIZE_RAW]; /* for CD-Data */ /* Some interesting sector numbers stored in the above buffer. */ diff --git a/lib/driver/image/bincue.c b/lib/driver/image/bincue.c index 8d630fa3..81e85c58 100644 --- a/lib/driver/image/bincue.c +++ b/lib/driver/image/bincue.c @@ -1,5 +1,5 @@ /* - $Id: bincue.c,v 1.16 2006/01/21 11:04:30 rocky Exp $ + $Id: bincue.c,v 1.17 2006/02/10 18:04:17 rocky Exp $ Copyright (C) 2002, 2003, 2004, 2005 Rocky Bernstein Copyright (C) 2001 Herbert Valerio Riedel @@ -26,7 +26,7 @@ (*.cue). */ -static const char _rcsid[] = "$Id: bincue.c,v 1.16 2006/01/21 11:04:30 rocky Exp $"; +static const char _rcsid[] = "$Id: bincue.c,v 1.17 2006/02/10 18:04:17 rocky Exp $"; #include "image.h" #include "cdio_assert.h" @@ -944,7 +944,7 @@ cdio_get_devices_bincue (void) char * cdio_get_default_device_bincue(void) { - char **drives = cdio_get_devices_nrg(); + char **drives = cdio_get_devices_bincue(); char *drive = (drives[0] == NULL) ? NULL : strdup(drives[0]); cdio_free_device_list(drives); return drive;