apps: fix warning about size_t / int conversion
[openssl.git] / test / testutil / apps_mem.c
index fa60bc684827e6a08ea911199bb896d058b7d99e..5c74a303858e979ce9dd66be6beb18387790ab81 100644 (file)
@@ -11,7 +11,7 @@
 
 /* shim that avoids sucking in too much from apps/apps.c */
 
-void* app_malloc(int sz, const char *what)
+void *app_malloc(size_t sz, const char *what)
 {
     void *vp = OPENSSL_malloc(sz);