All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH, nvme-cli] fix build without libuuid
@ 2017-06-28 23:09 Christoph Hellwig
  2017-06-29 17:44 ` Keith Busch
  0 siblings, 1 reply; 2+ messages in thread
From: Christoph Hellwig @ 2017-06-28 23:09 UTC (permalink / raw)


Signed-off-by: Christoph Hellwig <hch at lst.de>
---
 nvme.h | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/nvme.h b/nvme.h
index b796961..5530f90 100644
--- a/nvme.h
+++ b/nvme.h
@@ -17,6 +17,7 @@
 
 #include <stdbool.h>
 #include <endian.h>
+#include <stdint.h>
 #include "plugin.h"
 #include "json.h"
 
@@ -26,7 +27,7 @@
 #include <uuid/uuid.h>
 #else
 typedef struct {
-	__u8 b[16];
+	uint8_t b[16];
 } uuid_t;
 #endif
 
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [PATCH, nvme-cli] fix build without libuuid
  2017-06-28 23:09 [PATCH, nvme-cli] fix build without libuuid Christoph Hellwig
@ 2017-06-29 17:44 ` Keith Busch
  0 siblings, 0 replies; 2+ messages in thread
From: Keith Busch @ 2017-06-29 17:44 UTC (permalink / raw)


Thanks, applied. An issue was opened on github for this reason too, so
this was good timing.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-06-29 17:44 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-28 23:09 [PATCH, nvme-cli] fix build without libuuid Christoph Hellwig
2017-06-29 17:44 ` Keith Busch

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.