Include <Foundation/NSException.h>. Fix typo.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1618 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1996-05-31 17:27:45 +00:00
parent b30817e458
commit 7c53cc2561

View file

@ -23,6 +23,7 @@
#include <gnustep/base/preface.h>
#include <Foundation/NSLock.h>
#include <Foundation/NSException.h>
// NSLock class
// Simplest lock for protecting critical sections of code
@ -36,7 +37,7 @@
// Allocate the mutex from the runtime
mutex = objc_mutex_allocate();
NSAssertParameter (mutex);
NSParameterAssert (mutex);
return self;
}