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:
Richard Frith-MacDonald 2015-08-16 10:42:48 +00:00
parent 5c4c80a8df
commit 78c05bfc01
4 changed files with 59 additions and 40 deletions

View file

@ -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\
{\