fix compile errors

This commit is contained in:
Chris Danford
2003-12-17 19:51:11 +00:00
parent 96c18b7b6e
commit 395960211c
2 changed files with 6 additions and 4 deletions
@@ -31,11 +31,11 @@ MemoryCardDriver_Linux::~MemoryCardDriver_Linux()
bool MemoryCardDriver_Linux::StorageDevicesChanged() bool MemoryCardDriver_Linux::StorageDevicesChanged()
{ {
// has USB_DEVICE_LIST_FILE changed? // has USB_DEVICE_LIST_FILE changed?
if( g_fds == -1 ) // file not opened if( m_fds == -1 ) // file not opened
return false; // we'll never know... return false; // we'll never know...
struct stat st; struct stat st;
if( fstat(g_fds, &st) == -1 ) if( fstat(m_fds, &st) == -1 )
{ {
LOG->Warn( "stat of '%s' failed.", USB_DEVICE_LIST_FILE ); LOG->Warn( "stat of '%s' failed.", USB_DEVICE_LIST_FILE );
return false; return false;
@@ -210,7 +210,7 @@ bool MemoryCardDriver_Linux::MountAndTestWrite( UsbStorageDevice* pDevice )
{ {
if( !pDevice->sOsMountDir.empty() ) if( !pDevice->sOsMountDir.empty() )
return false; return false;
CString sCommand = "mount " + usbd.sOsMountDir; CString sCommand = "mount " + pDevice->sOsMountDir;
system( sCommand ); system( sCommand );
// Try to write a file. // Try to write a file.
@@ -229,7 +229,7 @@ void MemoryCardDriver_Linux::Unmount( UsbStorageDevice* pDevice )
{ {
if( !pDevice->sOsMountDir.empty() ) if( !pDevice->sOsMountDir.empty() )
return; return;
CString sCommand = "umount " + usbd.sOsMountDir; CString sCommand = "umount " + pDevice->sOsMountDir;
system( sCommand ); system( sCommand );
} }
@@ -1,6 +1,8 @@
#ifndef MEMORY_CARD_DRIVER_LINUX_H #ifndef MEMORY_CARD_DRIVER_LINUX_H
#define MEMORY_CARD_DRIVER_LINUX_H 1 #define MEMORY_CARD_DRIVER_LINUX_H 1
#include "MemoryCardDriver.h"
class MemoryCardDriver_Linux : public MemoryCardDriver class MemoryCardDriver_Linux : public MemoryCardDriver
{ {
public: public: