From: Christoph Hellwig Date: Wed, 28 Jun 2017 23:09:12 +0000 (-0700) Subject: fix build without libuuid X-Git-Tag: v1.4~27 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=1f33559fbc3e1944f4667c5b7ebfd9f4372e4570;p=users%2Fsagi%2Fnvme-cli.git fix build without libuuid Signed-off-by: Christoph Hellwig --- diff --git a/nvme.h b/nvme.h index b796961a..5530f90c 100644 --- a/nvme.h +++ b/nvme.h @@ -17,6 +17,7 @@ #include #include +#include #include "plugin.h" #include "json.h" @@ -26,7 +27,7 @@ #include #else typedef struct { - __u8 b[16]; + uint8_t b[16]; } uuid_t; #endif