[patch-git] Fix warning in convert-cache
From: tony.luck@intel.com
Date: 2016-06-15 22:41:55
From: tony.luck@intel.com
Date: 2016-06-15 22:41:55
gcc 3.4.3 kicks out this warning: convert-cache.c: In function `write_subdirectory': convert-cache.c:102: warning: field precision is not type int (arg 4) Signed-off-by: Tony Luck <tony.luck@intel.com> ---
--- k/convert-cache.c
+++ l/convert-cache.c@@ -99,7 +99,7 @@ static int write_subdirectory(void *buff continue; } - newlen += sprintf(new + newlen, "%o %.*s", S_IFDIR, slash - path, path); + newlen += sprintf(new + newlen, "%o %.*s", S_IFDIR, (int)(slash - path), path); new[newlen++] = 0; sha1 = (unsigned char *)(new + newlen); newlen += 20;