From 375029a2c3daad8f72ef65b130884c0ecf72305f Mon Sep 17 00:00:00 2001 From: Andrea Odetti Date: Fri, 18 Feb 2022 20:11:06 +0000 Subject: [PATCH] Fix parentheses-equality clang warning. Signed-off-by: Andrea Odetti --- source/CmdLine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/CmdLine.cpp b/source/CmdLine.cpp index d39a8bae..9c650968 100644 --- a/source/CmdLine.cpp +++ b/source/CmdLine.cpp @@ -76,7 +76,7 @@ static LPSTR GetNextArg(LPSTR lpCmdLine) { *lpCmdLine++ = 0x00; - while ((*lpCmdLine == ' ')) // Skip multiple spaces between args + while (*lpCmdLine == ' ') // Skip multiple spaces between args lpCmdLine++; break; }