aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/MCPKit/MCPFoundationKit/MCPStreamingResult.m
diff options
context:
space:
mode:
authorrowanbeentje <rowan@beent.je>2010-09-18 16:06:21 +0000
committerrowanbeentje <rowan@beent.je>2010-09-18 16:06:21 +0000
commit50c324b28583355740199c8c22a5c4d8bd63c050 (patch)
tree27799b1a19507295e75dcd0c051b300e98a543d5 /Frameworks/MCPKit/MCPFoundationKit/MCPStreamingResult.m
parentae8935e94513139f2ea0d10cba6757fef14fa86d (diff)
downloadsequelpro-50c324b28583355740199c8c22a5c4d8bd63c050.tar.gz
sequelpro-50c324b28583355740199c8c22a5c4d8bd63c050.tar.bz2
sequelpro-50c324b28583355740199c8c22a5c4d8bd63c050.zip
- Clean up warnings when building with GCC
Diffstat (limited to 'Frameworks/MCPKit/MCPFoundationKit/MCPStreamingResult.m')
-rw-r--r--Frameworks/MCPKit/MCPFoundationKit/MCPStreamingResult.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/Frameworks/MCPKit/MCPFoundationKit/MCPStreamingResult.m b/Frameworks/MCPKit/MCPFoundationKit/MCPStreamingResult.m
index 35ef0e7e..5c607912 100644
--- a/Frameworks/MCPKit/MCPFoundationKit/MCPStreamingResult.m
+++ b/Frameworks/MCPKit/MCPFoundationKit/MCPStreamingResult.m
@@ -46,7 +46,7 @@
@interface MCPStreamingResult (PrivateAPI)
-const char *_bytes2bin(Byte *n, NSUInteger nbytes, NSUInteger len, char *buf);
+void _bytes2bin(Byte *n, NSUInteger nbytes, NSUInteger len, char *buf);
- (void) _downloadAllData;
- (void) _freeAllDataWhenDone;
@@ -430,7 +430,7 @@ const char *_bytes2bin(Byte *n, NSUInteger nbytes, NSUInteger len, char *buf);
* Provides a binary representation of the supplied chars (n) in the supplied buffer (buf). The resulting
* binary representation will be zero-padded according to the supplied field length (len).
*/
-const char *_bytes2bin(Byte *n, NSUInteger nbytes, NSUInteger len, char *buf)
+void _bytes2bin(Byte *n, NSUInteger nbytes, NSUInteger len, char *buf)
{
int i = 0;