diff --git a/src/system/helpers.cpp b/src/system/helpers.cpp index 0913d3fcc..1ccc0b301 100644 --- a/src/system/helpers.cpp +++ b/src/system/helpers.cpp @@ -285,7 +285,7 @@ int check_dir(const char * dir, bool allow_tmp) ret = 0; // ok } if(ret == -1) - printf("Wrong Filessystem Type: 0x%" PRIx32"\n",s.f_type); + printf("Wrong Filessystem Type: 0x%llx\n", (unsigned long long)s.f_type); } return ret; }