]> git.saurik.com Git - cycript.git/commitdiff
Correct a simple typo in a thrown exception message.
authorJay Freeman (saurik) <saurik@saurik.com>
Tue, 11 Sep 2012 16:42:08 +0000 (09:42 -0700)
committerJay Freeman (saurik) <saurik@saurik.com>
Tue, 11 Sep 2012 16:42:08 +0000 (09:42 -0700)
Execute.cpp

index 8c9a48f8a12ddf4972e2076eb34cf9f3fdb21bbb..f8b70e54bbfec764a32420611cf26b2e5b6e8b5b 100644 (file)
@@ -1019,7 +1019,7 @@ static void All_getPropertyNames(JSContextRef context, JSObjectRef object, JSPro
 
 static JSObjectRef Pointer_new(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
     if (count != 2)
-        throw CYJSError(context, "incorrect number of arguments to Functor constructor");
+        throw CYJSError(context, "incorrect number of arguments to Pointer constructor");
 
     CYPool pool;