Browse Source

ENH: fix warning and code style

Bill Hoffman 19 years ago
parent
commit
c3148813f4
1 changed files with 5 additions and 3 deletions
  1. 5 3
      Source/CPack/OSXScriptLauncher.cxx

+ 5 - 3
Source/CPack/OSXScriptLauncher.cxx

@@ -69,10 +69,12 @@ int main(int argc, char* argv[])
     return 1;
     }
 
-  OSErr err = noErr;
-
   //create file reference from file spec
-  if (err = FSpMakeFSRef(&fileSpec, &fileRef)) return err;
+  OSErr err = FSpMakeFSRef(&fileSpec, &fileRef);
+  if(err) 
+    {
+    return err;
+    }
 
   // and then convert the FSRef to a path
   if ( FSRefMakePath(&fileRef, path, MaximumPathLength) )