From a0cda3989c8407461c2523a3b8562b2f2f773a54 Mon Sep 17 00:00:00 2001 From: Bryan Roe Date: Tue, 2 Jun 2020 13:23:44 -0700 Subject: [PATCH] fixed typo with ')' placement --- meshservice/ServiceMain.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meshservice/ServiceMain.c b/meshservice/ServiceMain.c index b0471a6..a228f0a 100644 --- a/meshservice/ServiceMain.c +++ b/meshservice/ServiceMain.c @@ -527,8 +527,8 @@ int wmain(int argc, char* wargv[]) if (argc > 1 && (strcasecmp(argv[1], "-finstall") == 0 || strcasecmp(argv[1], "-funinstall") == 0 || strcasecmp(argv[1], "-fulluninstall") == 0 || strcasecmp(argv[1], "-fullinstall") == 0 || - strcasecmp(argv[1], "-install")==0 || strcasecmp(argv[1], "-uninstall") == 0) || - strcasecmp(argv[1], "-state") == 0) + strcasecmp(argv[1], "-install")==0 || strcasecmp(argv[1], "-uninstall") == 0 || + strcasecmp(argv[1], "-state") == 0)) { argv[argc] = argv[1]; argv[1] = (char*)ILibMemory_SmartAllocate(4);