Skip to content

Commit

Permalink
Merge pull request #11 from SiGe11/patch-1
Browse files Browse the repository at this point in the history
Fix redundancy in comment
  • Loading branch information
sveinbjornt authored Dec 23, 2024
2 parents c38bec2 + 2c58981 commit 3b9a099
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FastDMG/FastDMGAppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ - (void)mountDiskImage:(NSString *)diskImagePath {
int polling_ms = 50000; // 0.05 sec
int max = 1000000/polling_ms;
int cnt = 0;
// Give it max 1 sec second to mount
// Give it max 1 sec to mount
while (cnt < max && [[NSFileManager defaultManager] fileExistsAtPath:mountPoint] == NO) {
usleep(polling_ms);
cnt++;
Expand Down

0 comments on commit 3b9a099

Please sign in to comment.