Rename function.

This commit is contained in:
Dianne Skoll
2023-10-01 13:56:24 -04:00
parent 12104a96b1
commit 3e36ffa9ff

View File

@@ -40,7 +40,7 @@
#include "expr.h" #include "expr.h"
#include "err.h" #include "err.h"
static void ProcessLongArg(char const *arg); static void ProcessLongOption(char const *arg);
/*************************************************************** /***************************************************************
* *
* Command line options recognized: * Command line options recognized:
@@ -245,7 +245,7 @@ void InitRemind(int argc, char const *argv[])
break; break;
case '-': case '-':
ProcessLongArg(arg); ProcessLongOption(arg);
while(*arg) arg++; while(*arg) arg++;
break; break;
@@ -965,7 +965,7 @@ AddTrustedUser(char const *username)
} }
static void static void
ProcessLongArg(char const *arg) ProcessLongOption(char const *arg)
{ {
if (!strcmp(arg, "version")) { if (!strcmp(arg, "version")) {
printf("%s\n", VERSION); printf("%s\n", VERSION);