Skip to content

Commit

Permalink
Fix invert logic
Browse files Browse the repository at this point in the history
  • Loading branch information
rfm committed Oct 21, 2024
1 parent c0cc645 commit 8456b72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/autogsdoc.m
Original file line number Diff line number Diff line change
Expand Up @@ -2220,7 +2220,7 @@ standard PropertyList format (not the XML format of OS X), using

s = [documentationDirectory
stringByAppendingPathComponent: @"index.html"];
if ([d writeToFile: s atomically: YES])
if ([d writeToFile: s atomically: YES] == NO)
{
NSLog(@"Sorry unable to write %@ to %@", htmlfile, s);
}
Expand Down

0 comments on commit 8456b72

Please sign in to comment.