From 410b5f3d342e1e2e4b06c8c7ae219212d2e5426f Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Sat, 12 Dec 2015 06:46:06 +0100 Subject: DEVTOOLS: Silence compiler warning in convbdf. --- devtools/convbdf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'devtools') diff --git a/devtools/convbdf.cpp b/devtools/convbdf.cpp index 21c8af8234..6852fc2f9a 100644 --- a/devtools/convbdf.cpp +++ b/devtools/convbdf.cpp @@ -392,7 +392,7 @@ int main(int argc, char *argv[]) { for (int y = 0; y < box.height; ++y) { printf("// |"); - unsigned char data; + unsigned char data = 0; for (int x = 0; x < box.width; ++x) { if (!(x % 8)) data = *bitmap++; -- cgit v1.2.3