Hello list.
Trying to compile 'argmatch.c' with '-DTEST', I
got this error:
argmatch.c(269): error C2172: 'argmatch_to_argument':
actual parameter is not a pointer: parameter 1
It should be patched to:
--- a/lib/argmatch.c 2021-01-01 14:12:49
+++ b/lib/argmatch.c 2021-03-18 09:48:46
@@ -266,7 +266,7 @@
backup_args, backup_vals);
printf ("The version control is '%s'\n",
- ARGMATCH_TO_ARGUMENT (backup_type, backup_args, backup_vals));
+ ARGMATCH_TO_ARGUMENT (&backup_type, backup_args, backup_vals));
--
--gv