diff options
author | sqlprodev <sqlprodev@northofthree.com> | 2011-03-01 21:00:55 +0000 |
---|---|---|
committer | sqlprodev <sqlprodev@northofthree.com> | 2011-03-01 21:00:55 +0000 |
commit | cd09dcd69813400b098b9f019a558efb11e6c8b2 (patch) | |
tree | 930e4c45038ec9f0258106608ad47af34fec8ca8 /Source/SPCSVExporter.m | |
parent | f1db829abc716f0cc498c0dabe8ecb1375dfa312 (diff) | |
download | sequelpro-cd09dcd69813400b098b9f019a558efb11e6c8b2.tar.gz sequelpro-cd09dcd69813400b098b9f019a558efb11e6c8b2.tar.bz2 sequelpro-cd09dcd69813400b098b9f019a558efb11e6c8b2.zip |
fixed compiler warnings
Diffstat (limited to 'Source/SPCSVExporter.m')
-rw-r--r-- | Source/SPCSVExporter.m | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/SPCSVExporter.m b/Source/SPCSVExporter.m index c874e9aa..e5d945c3 100644 --- a/Source/SPCSVExporter.m +++ b/Source/SPCSVExporter.m @@ -29,6 +29,7 @@ #import "SPFileHandle.h" #import "SPTableData.h" #import "SPExportUtilities.h" +#import "SPExportFile.h" @implementation SPCSVExporter @@ -394,7 +395,7 @@ } // Write data to disk - [[[self exportOutputFile] exportFileHandle] synchronizeFile]; + [[(SPExportFile*)[self exportOutputFile] exportFileHandle] synchronizeFile]; // Mark the process as not running [self setExportProcessIsRunning:NO]; |