From 683e5f01a25868ba3557a7aa876120347748c72c Mon Sep 17 00:00:00 2001 From: aleos89 Date: Thu, 10 Oct 2019 11:13:15 -0400 Subject: [PATCH] Fixed LGTM Alerts --- src/tool/mapcache.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tool/mapcache.cpp b/src/tool/mapcache.cpp index d174346fae..6fe125e733 100644 --- a/src/tool/mapcache.cpp +++ b/src/tool/mapcache.cpp @@ -150,7 +150,7 @@ int find_map(char *name) for(i = 0; i < header.map_count; i++) { if(fread(&info, sizeof(info), 1, map_cache_fp) != 1) - ShowError("An error has occurred in fread while reading \"%s\"\n", map_cache_fp); + printf("An error has occurred in fread while reading map_cache_fp.\n"); if(strcmp(name, info.name) == 0) // Map found return 1; else // Map not found, jump to the beginning of the next map info header @@ -243,7 +243,7 @@ int do_init(int argc, char** argv) header.map_count = 0; } else { if (fread(&header, sizeof(struct main_header), 1, map_cache_fp) != 1) - ShowError("An error has occurred while reading \"%s\"\n", map_cache_fp); + printf("An error has occurred in fread while reading map_cache_fp.\n"); header.file_size = GetULong((unsigned char *)&(header.file_size)); header.map_count = GetUShort((unsigned char *)&(header.map_count)); }