Fixes a warning given by checkpatch.pl to use 'unsigned int' instead of just 'unsigned'. WARNING: Prefer 'unsigned int' to bare use of 'unsigned' + unsigned nofs_flag = 0; Signed-off-by: Achilles Gaikwad <achillesgaikwad@xxxxxxxxx> --- fs/xfs/kmem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/xfs/kmem.c b/fs/xfs/kmem.c index 393b6849aeb3..a20909087e5e 100644 --- a/fs/xfs/kmem.c +++ b/fs/xfs/kmem.c @@ -48,7 +48,7 @@ kmem_alloc(size_t size, xfs_km_flags_t flags) void * kmem_zalloc_large(size_t size, xfs_km_flags_t flags) { - unsigned nofs_flag = 0; + unsigned int nofs_flag = 0; void *ptr; gfp_t lflags; -- 2.13.5 -- To unsubscribe from this list: send the line "unsubscribe linux-xfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html