- Eliminate warnings in debug print macros by explicitly converting all

field to unsigned long.
This commit is contained in:
Stanislav Sedov 2009-01-18 15:10:46 +00:00
parent e6b6691abb
commit b51ba332bb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=187397

View File

@ -400,7 +400,7 @@ static int compute_sb_data(devvp, es, fs)
#if 1
#define V(v)
#else
#define V(v) printf(#v"= %d\n", fs->v);
#define V(v) printf(#v"= %lu\n", (unsigned long)fs->v);
#endif
fs->s_blocksize = EXT2_MIN_BLOCK_SIZE << es->s_log_block_size;