mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
in stubs, return nil instead of an empty string, compatible with GCC
This commit is contained in:
parent
e6a764d7f9
commit
e05c53f4b4
1 changed files with 2 additions and 2 deletions
|
@ -26,7 +26,7 @@
|
|||
|
||||
NSString *NSFileTypeForHFSTypeCode(NSUInteger hfsFileTypeCode)
|
||||
{
|
||||
return @"";
|
||||
return nil;
|
||||
}
|
||||
|
||||
NSUInteger NSHFSTypeCodeFromFileType(NSString *fileTypeString)
|
||||
|
@ -36,6 +36,6 @@ NSUInteger NSHFSTypeCodeFromFileType(NSString *fileTypeString)
|
|||
|
||||
NSString *NSHFSTypeOfFile(NSString *fullFilePath)
|
||||
{
|
||||
return @"";
|
||||
return nil;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue