From 17def236ab3aa3f709bd57ccfe8d00b1cce06162 Mon Sep 17 00:00:00 2001 From: mccallum Date: Fri, 31 May 1996 17:27:45 +0000 Subject: [PATCH] Include . Fix typo. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1618 72102866-910b-0410-8b05-ffd578937521 --- Source/NSLock.m | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/NSLock.m b/Source/NSLock.m index 26d9d98fe..e06f5dcc3 100644 --- a/Source/NSLock.m +++ b/Source/NSLock.m @@ -23,6 +23,7 @@ #include #include +#include // 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; }