diff options
author | stuconnolly <stuart02@gmail.com> | 2009-09-03 19:51:49 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2009-09-03 19:51:49 +0000 |
commit | a8bee6d7815cf9431cc53522f74bed648087a674 (patch) | |
tree | 54177fe0ac204320ec770ee6fcaedf539715d129 /Frameworks/MCPKit/MCPEntrepriseKit | |
parent | 223fb458aa3579d55452ea1c2f7a6e9059befb4a (diff) | |
download | sequelpro-a8bee6d7815cf9431cc53522f74bed648087a674.tar.gz sequelpro-a8bee6d7815cf9431cc53522f74bed648087a674.tar.bz2 sequelpro-a8bee6d7815cf9431cc53522f74bed648087a674.zip |
Missing nil terminator.
Diffstat (limited to 'Frameworks/MCPKit/MCPEntrepriseKit')
-rw-r--r-- | Frameworks/MCPKit/MCPEntrepriseKit/MCPObject.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Frameworks/MCPKit/MCPEntrepriseKit/MCPObject.m b/Frameworks/MCPKit/MCPEntrepriseKit/MCPObject.m index ae5e2f59..16d0695b 100644 --- a/Frameworks/MCPKit/MCPEntrepriseKit/MCPObject.m +++ b/Frameworks/MCPKit/MCPEntrepriseKit/MCPObject.m @@ -290,7 +290,7 @@ If the identityAttributes of the class description is empty, the entry will alwa NSUInteger i; if (! theConnection) { - return [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithInteger:MCPDBReturnNoConnection], @"MCPDBReturnCode"]; + return [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithInteger:MCPDBReturnNoConnection], @"MCPDBReturnCode", nil]; } if (! [theKeyAttr count]) { // There is no primary key for this object. [theKeys setObject:[NSNumber numberWithInteger:MCPDBReturnNoKey] forKey:@"MCPDBReturnCode"]; |