From 125d346f602d28d4fe4fecff5b7c97bac50e1f4a Mon Sep 17 00:00:00 2001 From: Milian Wolff Date: Wed, 9 Dec 2015 20:39:58 +0100 Subject: [PATCH] Fix compiler warning --- tests/manual/test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/manual/test.cpp b/tests/manual/test.cpp index bf46d50..1b6ef67 100644 --- a/tests/manual/test.cpp +++ b/tests/manual/test.cpp @@ -48,7 +48,7 @@ int main() delete f; char* c = new char[1000]; - printf("new char[]: %p\n", c); + printf("new char[]: %p\n", (void*)c); delete[] c; void* buf = malloc(100); -- 2.7.4