From d2715d7c3534f35de0ebdd30d8d770bd79ca7a23 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Wed, 12 Feb 2014 11:17:21 +0100 Subject: Fix 64bit compilation --- server/src/pracrodaotest.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'server/src/pracrodaotest.h') diff --git a/server/src/pracrodaotest.h b/server/src/pracrodaotest.h index 3419978..b21e4f3 100644 --- a/server/src/pracrodaotest.h +++ b/server/src/pracrodaotest.h @@ -56,7 +56,7 @@ public: std::string currval() { char buf[32]; - sprintf(buf, "%d", counter); + sprintf(buf, "%d", (int)counter); return buf; } -- cgit v1.2.3