mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Mnor bugfix for 64bit cpu
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@23331 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
bab9df4952
commit
af4215afee
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2006-08-26 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSProcessInfo.m: Fix passing int variable to printf format
|
||||
expecting long.
|
||||
|
||||
2006-08-25 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSScanner.m: initialisation fix pointed out by David Ayer
|
||||
|
|
|
@ -934,7 +934,7 @@ int main(int argc, char *argv[], char *env[])
|
|||
- (NSString *) globallyUniqueString
|
||||
{
|
||||
static unsigned long counter = 0;
|
||||
int count;
|
||||
unsigned long count;
|
||||
static NSString *host = nil;
|
||||
static int pid;
|
||||
static unsigned long start;
|
||||
|
|
Loading…
Reference in a new issue