Synatx error.

This commit is contained in:
rocky
2005-01-24 00:17:41 +00:00
parent c08a644b26
commit b0365c2cc9

View File

@@ -1,5 +1,5 @@
/*
$Id: _cdio_osx.c,v 1.11 2005/01/24 00:06:31 rocky Exp $
$Id: _cdio_osx.c,v 1.12 2005/01/24 00:17:41 rocky Exp $
Copyright (C) 2003, 2004, 2005 Rocky Bernstein <rocky@panix.com>
from vcdimager code:
@@ -34,7 +34,7 @@
#include "config.h"
#endif
static const char _rcsid[] = "$Id: _cdio_osx.c,v 1.11 2005/01/24 00:06:31 rocky Exp $";
static const char _rcsid[] = "$Id: _cdio_osx.c,v 1.12 2005/01/24 00:17:41 rocky Exp $";
#include <cdio/logging.h>
#include <cdio/sector.h>
@@ -1321,7 +1321,7 @@ _eject_media_osx (void *user_data) {
Return the size of the CD in logical block address (LBA) units.
*/
static uint32_t
_get_disc_last_lsn_osx (void *user_data)
get_disc_last_lsn_osx (void *user_data)
{
return get_track_lba_osx(user_data, CDIO_CDROM_LEADOUT_TRACK);
}
@@ -1667,7 +1667,7 @@ cdio_open_osx (const char *psz_orig_source)
.get_cdtext = get_cdtext_osx,
.get_default_device = cdio_get_default_device_osx,
.get_devices = cdio_get_devices_osx,
.get_disc_last_lsn = _get_disc_last_lsn_osx
.get_disc_last_lsn = get_disc_last_lsn_osx,
.get_discmode = get_discmode_osx,
.get_drive_cap = get_drive_cap_osx,
.get_first_track_num = get_first_track_num_generic,