From: Daniel Wagner Date: Tue, 8 Feb 2022 09:27:17 +0000 (+0100) Subject: nvme: Rename LIBJSONC_14 to CONFIG_JSONC_14 X-Git-Tag: v2.0-rc3~14^2 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=b497322f708cbbfe29554f4605579e3cdc98eaca;p=users%2Fsagi%2Fnvme-cli.git nvme: Rename LIBJSONC_14 to CONFIG_JSONC_14 We missed to rename LIBJSONC_14 to CONFIG_JSONC_14 in the nvme.h header file in 4c3a8c058eb3 ("build: Prefix configuration options"). Signed-off-by: Daniel Wagner --- diff --git a/nvme.h b/nvme.h index 8aee4dc3..66ab46a3 100644 --- a/nvme.h +++ b/nvme.h @@ -33,7 +33,7 @@ json_object_object_add(o, k, json_object_new_int(v)) #define json_object_add_value_int(o, k, v) \ json_object_object_add(o, k, json_object_new_int(v)) -#ifdef LIBJSONC_14 +#ifdef CONFIG_JSONC_14 #define json_object_add_value_uint64(o, k, v) \ json_object_object_add(o, k, json_object_new_uint64(v)) #else