Skip to content

Commit

Permalink
Fixed compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
abbeycode committed Oct 7, 2020
1 parent 40a7c12 commit 75bbfd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/URKArchive.mm
Original file line number Diff line number Diff line change
Expand Up @@ -1563,7 +1563,7 @@ - (NSString *)errorNameForErrorCode:(NSInteger)errorCode detail:(NSString * __au

default:
errorName = [NSString stringWithFormat:@"Unknown (%ld)", (long)errorCode];
detail = [NSString localizedStringWithFormat:NSLocalizedStringFromTableInBundle(@"Unknown error encountered (code %ld)", @"UnrarKit", _resources, @"Error detail string"), errorCode];
detail = [NSString localizedStringWithFormat:NSLocalizedStringFromTableInBundle(@"Unknown error encountered (code %ld)", @"UnrarKit", _resources, @"Error detail string"), (long)errorCode];
break;
}

Expand Down

0 comments on commit 75bbfd3

Please sign in to comment.