]> git.saurik.com Git - cycript.git/blobdiff - Console.cpp
Remove old iOS build environment from sysroot.sh.
[cycript.git] / Console.cpp
index c2a87610698f34a2dfd0fde79623cc7fd99df59b..e955311e9ed622059e29e4ca6e52b770e2d9ed49 100644 (file)
@@ -116,7 +116,7 @@ void Setup(CYOutput &out, CYDriver &driver, CYOptions &options) {
 
 static CYUTF8String Run(CYPool &pool, int client, CYUTF8String code) {
     const char *json;
-    size_t size;
+    uint32_t size;
 
     if (client == -1) {
         mode_ = Running;
@@ -137,7 +137,7 @@ static CYUTF8String Run(CYPool &pool, int client, CYUTF8String code) {
         CYSendAll(client, code.data, code.size);
         mode_ = Waiting;
         CYRecvAll(client, &size, sizeof(size));
-        if (size == _not(size_t))
+        if (size == _not(uint32_t))
             json = NULL;
         else {
             char *temp(new(pool) char[size + 1]);