nbd: flags is a u32 variable

The flags variable is used as u32 variable. This patch changes the type
to be u32.

Signed-off-by: Markus Pargmann <mpa@pengutronix.de>
Signed-off-by: Jens Axboe <axboe@fb.com>
This commit is contained in:
Markus Pargmann 2015-08-17 08:20:09 +02:00 committed by Jens Axboe
parent cad73b2703
commit 22d109c1bb

View file

@ -41,7 +41,7 @@
#include <linux/nbd.h>
struct nbd_device {
int flags;
u32 flags;
struct socket * sock; /* If == NULL, device is not ready, yet */
int magic;