Skip to content

Commit

Permalink
Fix redundancy in comment
Browse files Browse the repository at this point in the history
SiGe11 authored Dec 23, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 44e9545 commit 2c58981
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
@@ -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++;

0 comments on commit 2c58981

Please sign in to comment.