From a34b32043aeee3cd7731e93b5cfe4caa39a8e7e1 Mon Sep 17 00:00:00 2001 From: Jacek Jendrzej Date: Sat, 22 Aug 2015 15:27:47 +0200 Subject: [PATCH] fix Werror=format --- src/system/helpers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/system/helpers.cpp b/src/system/helpers.cpp index ae6c6a23f..355d50b2a 100644 --- a/src/system/helpers.cpp +++ b/src/system/helpers.cpp @@ -282,7 +282,7 @@ int check_dir(const char * dir, bool allow_tmp) ret = 0; // ok } if(ret == -1) - printf("Wrong Filessystem Type: 0x%lx\n",s.f_type); + printf("Wrong Filessystem Type: 0x%x\n",s.f_type); } return ret; }