From b999616df8f34d8183c5836df76f3cb7b2bfa4b3 Mon Sep 17 00:00:00 2001 From: Christopher Dunn Date: Sun, 15 May 2016 23:13:47 -0500 Subject: [PATCH] fix warning --- src/jsontestrunner/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jsontestrunner/main.cpp b/src/jsontestrunner/main.cpp index a1d911d..45db464 100644 --- a/src/jsontestrunner/main.cpp +++ b/src/jsontestrunner/main.cpp @@ -58,7 +58,7 @@ static JSONCPP_STRING readInputTestFile(const char* path) { return JSONCPP_STRING(""); fseek(file, 0, SEEK_END); long const size = ftell(file); - unsigned long const usize = static_cast(size); + unsigned long const usize = static_cast(size); fseek(file, 0, SEEK_SET); JSONCPP_STRING text; char* buffer = new char[size + 1];