mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-19 15:39:07 +00:00
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:
parent
cad73b2703
commit
22d109c1bb
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user