From a2be99d0a3d2f6540827d6b8a8f3cd2545672bb8 Mon Sep 17 00:00:00 2001 From: stuconnolly Date: Mon, 16 Aug 2010 19:17:02 +0000 Subject: Fix release and dist builds. --- Source/SPExportFileUtilities.m | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'Source/SPExportFileUtilities.m') diff --git a/Source/SPExportFileUtilities.m b/Source/SPExportFileUtilities.m index 4cb39455..76650556 100644 --- a/Source/SPExportFileUtilities.m +++ b/Source/SPExportFileUtilities.m @@ -106,15 +106,13 @@ NSUInteger i = 0; for (SPExportFile *file in files) - { - SPExportFileHandleStatus status = [file exportFileHandleStatus]; - - if (status == SPExportFileHandleExists) { + { + if ([file exportFileHandleStatus] == SPExportFileHandleExists) { i++; } // For file handles that we failed to create for some unknown reason, ignore them and remove any // exporters that are associated with them. - else if (status == SPExportFileHandleFailed) { + else if ([file exportFileHandleStatus] == SPExportFileHandleFailed) { for (SPExporter *exporter in exporters) { -- cgit v1.2.3