mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
Avoid compiler warnrings
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@38888 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
5c4c80a8df
commit
78c05bfc01
4 changed files with 59 additions and 40 deletions
|
@ -67,10 +67,10 @@
|
|||
if (_name == nil)\
|
||||
{\
|
||||
return [NSString stringWithFormat: @"%@ (locked by %llu)",\
|
||||
[super description], (NSUInteger)_mutex.__data.__owner];\
|
||||
[super description], (unsigned long long)_mutex.__data.__owner];\
|
||||
}\
|
||||
return [NSString stringWithFormat: @"%@ '%@' (locked by %llu)",\
|
||||
[super description], _name, (NSUInteger)_mutex.__data.__owner];\
|
||||
[super description], _name, (unsigned long long)_mutex.__data.__owner];\
|
||||
}\
|
||||
else\
|
||||
{\
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue