From a231f5dbb93c60da240a027f2afd8a4797069541 Mon Sep 17 00:00:00 2001 From: Ash Wolf Date: Sun, 15 Jan 2023 21:50:41 +0000 Subject: more cleanup --- command_line/CmdLine/Src/Project/CLAccessPaths.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'command_line/CmdLine/Src/Project') diff --git a/command_line/CmdLine/Src/Project/CLAccessPaths.c b/command_line/CmdLine/Src/Project/CLAccessPaths.c index 1b455da..f4c7725 100644 --- a/command_line/CmdLine/Src/Project/CLAccessPaths.c +++ b/command_line/CmdLine/Src/Project/CLAccessPaths.c @@ -463,13 +463,13 @@ void Framework_GetEnvInfo(void) { if (path[0]) { if (strlen(path) >= sizeof(path)) { - CLReportError(64, sizeof(path), path); + CLReportError(CLStr64, sizeof(path), path); } else { err = OS_MakeSpec(path, &spec, &is_file); if (!is_file && !err) { Frameworks_AddPath(&spec.path); } else { - CLReportError(23, path); + CLReportError(CLStr23, path); } } } -- cgit v1.2.3