Index: NSObjCRuntime.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/base/Source/NSObjCRuntime.m,v
retrieving revision 1.28
diff -u -r1.28 NSObjCRuntime.m
--- NSObjCRuntime.m	10 Feb 2002 12:54:27 -0000	1.28
+++ NSObjCRuntime.m	10 Feb 2002 22:58:27 -0000
@@ -26,6 +26,7 @@
 
 #include <config.h>
 #include <base/preface.h>
+#include <Foundation/NSException.h>
 #include <Foundation/NSObjCRuntime.h>
 #include <Foundation/NSString.h>
 #include <mframe.h>
@@ -129,7 +130,7 @@
       return NO;
     }
   //This very highly unprobable value can be used as a marker
-  NSAssert(offset!=UINT_MAX,@"Bad Offset");
+  NSCAssert(offset != UINT_MAX, @"Bad Offset");
   memcpy(data, ((void*)obj) + offset, size);
   return YES;
 }
@@ -146,7 +147,7 @@
       return NO;
     }
   //This very highly unprobable value can be used as a marker
-  NSAssert(offset!=UINT_MAX,@"Bad Offset");
+  NSCAssert(offset != UINT_MAX, @"Bad Offset");
   memcpy(((void*)obj) + offset, data, size);
   return YES;
 }
