X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/16b20e711ae0d7456d2e3349217d3e0e2ddbb594..1f19cfb6fca47904dd6d5b54f48fa21d306cf272:/Pooling.hpp?ds=sidebyside diff --git a/Pooling.hpp b/Pooling.hpp index c7d7ae3..550a03a 100644 --- a/Pooling.hpp +++ b/Pooling.hpp @@ -118,7 +118,7 @@ class CYPool { char *strdup(const char *data) { if (data == NULL) return NULL; - return reinterpret_cast(memdup(data, strlen(data) + 1, 1)); + return memdup(data, strlen(data) + 1, 1); } template