Blame SOURCES/0016-RH-Fix-nvme-function-missing-argument.patch

68b27c
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
68b27c
From: Benjamin Marzinski <bmarzins@redhat.com>
68b27c
Date: Fri, 25 Jan 2019 14:54:56 -0600
68b27c
Subject: [PATCH] RH: Fix nvme function missing argument
68b27c
68b27c
A future patch will change the compilation options to error when
68b27c
function declarations have unspecified arguments.
68b27c
68b27c
Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com>
68b27c
---
68b27c
 libmultipath/nvme/argconfig.h | 2 +-
68b27c
 1 file changed, 1 insertion(+), 1 deletion(-)
68b27c
68b27c
diff --git a/libmultipath/nvme/argconfig.h b/libmultipath/nvme/argconfig.h
68b27c
index adb192b6..bfd10ef8 100644
68b27c
--- a/libmultipath/nvme/argconfig.h
68b27c
+++ b/libmultipath/nvme/argconfig.h
68b27c
@@ -76,7 +76,7 @@ struct argconfig_commandline_options {
68b27c
 extern "C" {
68b27c
 #endif
68b27c
 
68b27c
-typedef void argconfig_help_func();
68b27c
+typedef void argconfig_help_func(void);
68b27c
 void argconfig_append_usage(const char *str);
68b27c
 void argconfig_print_help(const char *program_desc,
68b27c
 			  const struct argconfig_commandline_options *options);