Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 22d109c1 authored by Markus Pargmann's avatar Markus Pargmann Committed by Jens Axboe
Browse files

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: default avatarMarkus Pargmann <mpa@pengutronix.de>
Signed-off-by: default avatarJens Axboe <axboe@fb.com>
parent cad73b27
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;