Revision: 279
http://svn.sourceforge.net/substrate/?rev=279&view=rev
Author: landonf
Date: 2006-08-31 00:19:23 -0700 (Thu, 31 Aug 2006)
Log Message:
-----------
Fix return type -- unsigned int, not a pointer
Modified Paths:
--------------
trunk/Foundation/NSData.m
Modified: trunk/Foundation/NSData.m
===================================================================
--- trunk/Foundation/NSData.m 2006-08-31 07:05:34 UTC (rev 278)
+++ trunk/Foundation/NSData.m 2006-08-31 07:19:23 UTC (rev 279)
@@ -214,7 +214,7 @@
*/
- (unsigned int) length {
[self _subclassResponsibility: _cmd];
- return nil;
+ return 0;
}
/*!
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|