From fae8c0bbd3dc549c9f6957b006523da922809afa Mon Sep 17 00:00:00 2001 From: disinvite Date: Mon, 11 Mar 2024 21:53:04 -0400 Subject: [PATCH] Line numbers out --- LEGO1/omni/src/common/mxutilities.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/LEGO1/omni/src/common/mxutilities.cpp b/LEGO1/omni/src/common/mxutilities.cpp index d283866e..7030848c 100644 --- a/LEGO1/omni/src/common/mxutilities.cpp +++ b/LEGO1/omni/src/common/mxutilities.cpp @@ -83,12 +83,12 @@ void MakeSourceName(char* p_output, const char* p_input) MxBool KeyValueStringParse(char* p_output, const char* p_command, const char* p_string) { MxBool didMatch = FALSE; - assert(p_string); // 90 - assert(p_command); // 91 + assert(p_string); + assert(p_command); MxS16 len = strlen(p_string); char* string = new char[len + 1]; - assert(string); // 95 + assert(string); strcpy(string, p_string); for (char* token = strtok(string, ", \t\r\n:"); token; token = strtok(NULL, ", \t\r\n:")) {