Skip to content

Commit

Permalink
Fixup error intrduced in last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
rfm committed Nov 21, 2023
1 parent d98bc5c commit a01afe2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/objc-load.m
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@

s = [NSString stringWithUTF8String: info.dli_fname];
s = [s stringByResolvingSymlinksInPath];
s = [s stringByStandardizingPath];
return [s stringByStandardizingPath];
}
#endif

Expand Down Expand Up @@ -327,7 +327,7 @@

s = [NSString stringWithUTF8String: ret];
s = [s stringByResolvingSymlinksInPath];
s = [s stringByStandardizingPath];
return [s stringByStandardizingPath];
}
}
return nil;
Expand Down

0 comments on commit a01afe2

Please sign in to comment.