From 3e36ffa9ff2421ff371322317e4686719d5d75fe Mon Sep 17 00:00:00 2001 From: Dianne Skoll Date: Sun, 1 Oct 2023 13:56:24 -0400 Subject: [PATCH] Rename function. --- src/init.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/init.c b/src/init.c index 0bf5c07c..0962ecc7 100644 --- a/src/init.c +++ b/src/init.c @@ -40,7 +40,7 @@ #include "expr.h" #include "err.h" -static void ProcessLongArg(char const *arg); +static void ProcessLongOption(char const *arg); /*************************************************************** * * Command line options recognized: @@ -245,7 +245,7 @@ void InitRemind(int argc, char const *argv[]) break; case '-': - ProcessLongArg(arg); + ProcessLongOption(arg); while(*arg) arg++; break; @@ -965,7 +965,7 @@ AddTrustedUser(char const *username) } static void -ProcessLongArg(char const *arg) +ProcessLongOption(char const *arg) { if (!strcmp(arg, "version")) { printf("%s\n", VERSION);