- Eliminate warnings in debug print macros by explicitly converting all
field to unsigned long.
This commit is contained in:
parent
e6b6691abb
commit
b51ba332bb
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user