MSWindows lint.

This commit is contained in:
rocky
2004-07-13 12:28:18 +00:00
parent 2649b729a1
commit 36a944cc28
3 changed files with 10 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
/* /*
$Id: sample2.c,v 1.8 2004/04/25 14:07:23 rocky Exp $ $Id: sample2.c,v 1.9 2004/07/13 12:28:18 rocky Exp $
Copyright (C) 2003, 2004 Rocky Bernstein <rocky@panix.com> Copyright (C) 2003, 2004 Rocky Bernstein <rocky@panix.com>
@@ -47,7 +47,7 @@ main(int argc, const char *argv[])
if (default_device) { if (default_device) {
cdio_drive_cap_t i_drive_cap = cdio_get_drive_cap(cdio); cdio_drive_cap_t i_drive_cap = cdio_get_drive_cap(cdio);
printf("The default device for this driver is %s\n", default_device); printf("The default device for this driver is %s\n", default_device);
printf("drive capability in hex: %x\n", i_drive_cap); printf("drive capability in hex: %x\n", (unsigned int) i_drive_cap);
if (CDIO_DRIVE_CAP_ERROR == i_drive_cap) { if (CDIO_DRIVE_CAP_ERROR == i_drive_cap) {
printf("Error in getting drive properties\n"); printf("Error in getting drive properties\n");
} else if (CDIO_DRIVE_CAP_UNKNOWN == i_drive_cap) { } else if (CDIO_DRIVE_CAP_UNKNOWN == i_drive_cap) {

View File

@@ -1,5 +1,5 @@
/* /*
$Id: aspi32.c,v 1.18 2004/07/13 04:33:07 rocky Exp $ $Id: aspi32.c,v 1.19 2004/07/13 12:28:21 rocky Exp $
Copyright (C) 2004 Rocky Bernstein <rocky@panix.com> Copyright (C) 2004 Rocky Bernstein <rocky@panix.com>
@@ -27,7 +27,7 @@
# include "config.h" # include "config.h"
#endif #endif
static const char _rcsid[] = "$Id: aspi32.c,v 1.18 2004/07/13 04:33:07 rocky Exp $"; static const char _rcsid[] = "$Id: aspi32.c,v 1.19 2004/07/13 12:28:21 rocky Exp $";
#include <cdio/cdio.h> #include <cdio/cdio.h>
#include <cdio/sector.h> #include <cdio/sector.h>
@@ -286,6 +286,8 @@ init_aspi (_img_private_t *env)
} else if ( 6 == strlen(env->gen.source_name) } else if ( 6 == strlen(env->gen.source_name)
&& isalpha(env->gen.source_name[4] )) { && isalpha(env->gen.source_name[4] )) {
c_drive = env->gen.source_name[4]; c_drive = env->gen.source_name[4];
} else {
c_drive = 'C';
} }
if ( !have_aspi(&hASPI, &lpGetSupport, &lpSendCommand) ) if ( !have_aspi(&hASPI, &lpGetSupport, &lpSendCommand) )

View File

@@ -1,5 +1,5 @@
/* /*
$Id: win32_ioctl.c,v 1.9 2004/07/13 03:45:26 rocky Exp $ $Id: win32_ioctl.c,v 1.10 2004/07/13 12:28:21 rocky Exp $
Copyright (C) 2004 Rocky Bernstein <rocky@panix.com> Copyright (C) 2004 Rocky Bernstein <rocky@panix.com>
@@ -26,7 +26,7 @@
# include "config.h" # include "config.h"
#endif #endif
static const char _rcsid[] = "$Id: win32_ioctl.c,v 1.9 2004/07/13 03:45:26 rocky Exp $"; static const char _rcsid[] = "$Id: win32_ioctl.c,v 1.10 2004/07/13 12:28:21 rocky Exp $";
#include <cdio/cdio.h> #include <cdio/cdio.h>
#include <cdio/sector.h> #include <cdio/sector.h>
@@ -181,7 +181,7 @@ read_audio_sectors_win32ioctl (_img_private_t *env, void *data, lsn_t lsn,
sizeof(RAW_READ_INFO), data, sizeof(RAW_READ_INFO), data,
CDIO_CD_FRAMESIZE_RAW * nblocks, CDIO_CD_FRAMESIZE_RAW * nblocks,
&dwBytesReturned, NULL ) == 0 ) { &dwBytesReturned, NULL ) == 0 ) {
char *psz_msg; char *psz_msg = NULL;
DWORD dw = GetLastError(); DWORD dw = GetLastError();
FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM, FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM,
@@ -244,7 +244,7 @@ read_raw_sector (const _img_private_t *env, void *buf, lsn_t lsn)
NULL); NULL);
if(! success) { if(! success) {
char *psz_msg; char *psz_msg = NULL;
DWORD dw = GetLastError(); DWORD dw = GetLastError();
FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM, FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM,