From 1c59c7535ecb8dbc01c8e26dd89b5406d7a554cc Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Thu, 28 Nov 2013 20:38:43 +0100 Subject: Fix 64bit compile warning. --- plugingui/directory.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugingui/directory.cc b/plugingui/directory.cc index 85e34aa..057aead 100644 --- a/plugingui/directory.cc +++ b/plugingui/directory.cc @@ -351,7 +351,7 @@ Directory::Path Directory::parsePath(std::string path_str) std::string Directory::pathToStr(Directory::Path& path) { std::string cleaned_path; - DEBUG(directory, "Number of directories in path is %d\n", path.size()); + DEBUG(directory, "Number of directories in path is %d\n", (int)path.size()); for(Directory::Path::iterator it = path.begin(); it != path.end(); it++) { -- cgit v1.2.3