Skip to content

Commit

Permalink
Fix some identation
Browse files Browse the repository at this point in the history
  • Loading branch information
atmaxinger committed Sep 15, 2014
1 parent 2721c8b commit 6cdb38e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions SheepShaver/src/MacOSX/Launcher/VMSettingsController.mm
Original file line number Diff line number Diff line change
Expand Up @@ -304,9 +304,9 @@ - (void) _createDiskEnd: (NSSavePanel *) save returnCode: (int) theReturnCode co
snprintf(cmd, sizeof(cmd), "dd if=/dev/zero \"of=%s\" bs=1024k count=%d", [[save filename] UTF8String], [diskSaveSizeField intValue]);
int ret = system(cmd);
if (ret == 0) {
DiskType *d=[[DiskType alloc] init];
[d setPath:makeRelativeIfNecessary([save filename])];
[d setIsCDROM:NO];
DiskType *d=[[DiskType alloc] init];
[d setPath:makeRelativeIfNecessary([save filename])];
[d setIsCDROM:NO];

[diskArray addObject: d];
[disks reloadData];
Expand Down

0 comments on commit 6cdb38e

Please sign in to comment.