Fix two more lowercase ARG macro undefs.

This commit is contained in:
Milan Broz
2022-05-24 08:46:54 +02:00
parent 3341bfd6c5
commit 5aa01da2b5
2 changed files with 2 additions and 2 deletions

View File

@@ -631,7 +631,7 @@ int main(int argc, const char **argv)
{ NULL, '\0', POPT_ARG_CALLBACK, basic_options_cb, 0, NULL, NULL }, { NULL, '\0', POPT_ARG_CALLBACK, basic_options_cb, 0, NULL, NULL },
#define ARG(A, B, C, D, E, F, G, H) { A, B, C, NULL, A ## _ID, D, E }, #define ARG(A, B, C, D, E, F, G, H) { A, B, C, NULL, A ## _ID, D, E },
#include "integritysetup_arg_list.h" #include "integritysetup_arg_list.h"
#undef arg #undef ARG
POPT_TABLEEND POPT_TABLEEND
}; };
static struct poptOption popt_options[] = { static struct poptOption popt_options[] = {

View File

@@ -568,7 +568,7 @@ int main(int argc, const char **argv)
{ NULL, '\0', POPT_ARG_CALLBACK, basic_options_cb, 0, NULL, NULL }, { NULL, '\0', POPT_ARG_CALLBACK, basic_options_cb, 0, NULL, NULL },
#define ARG(A, B, C, D, E, F, G, H) { A, B, C, NULL, A ## _ID, D, E }, #define ARG(A, B, C, D, E, F, G, H) { A, B, C, NULL, A ## _ID, D, E },
#include "veritysetup_arg_list.h" #include "veritysetup_arg_list.h"
#undef arg #undef ARG
POPT_TABLEEND POPT_TABLEEND
}; };
static struct poptOption popt_options[] = { static struct poptOption popt_options[] = {