From 4729b13f36d4713ce1162dc1d4425d44e1474078 Mon Sep 17 00:00:00 2001 From: Ariadne Conill Date: Mon, 26 Apr 2021 00:41:20 -0600 Subject: [PATCH] nvme-rpmb: Add limits.h due to missing PATH_MAX definition Commit 21f40f38b introduced new use of PATH_MAX, but did not add the limits.h header. This resulted in nvme-cli failing to build on ppc64le systems using the musl C library. Signed-off-by: Ariadne Conill [dwagner: removed nvme-topology.c bits] Signed-off-by: Daniel Wagner --- nvme-rpmb.c | 1 + 1 file changed, 1 insertion(+) diff --git a/nvme-rpmb.c b/nvme-rpmb.c index 77a99f48..5ad99258 100644 --- a/nvme-rpmb.c +++ b/nvme-rpmb.c @@ -25,6 +25,7 @@ #include #include #include +#include #include "nvme.h" #include "libnvme.h" -- 2.50.1