mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Fix warnings
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@16837 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
8217aaae40
commit
a2f5796468
2 changed files with 3 additions and 1 deletions
|
@ -8,6 +8,7 @@
|
|||
|
||||
*/
|
||||
#include <stdio.h>
|
||||
#include <Foundation/NSString.h>
|
||||
#include "LoadMe.h"
|
||||
|
||||
@implementation LoadMe
|
||||
|
@ -21,7 +22,7 @@
|
|||
|
||||
- afterLoad
|
||||
{
|
||||
printf("%s's instance variable is %i\n", [self description], var);
|
||||
printf("%s's instance variable is %i\n", [[self description] cString], var);
|
||||
return self;
|
||||
}
|
||||
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
#ifndef __MINGW32__
|
||||
#include <sys/param.h>
|
||||
#endif
|
||||
#include "Foundation/NSArray.h"
|
||||
#include "Foundation/NSBundle.h"
|
||||
#include "Foundation/NSException.h"
|
||||
#include "Foundation/NSString.h"
|
||||
|
|
Loading…
Reference in a new issue