aboutsummaryrefslogtreecommitdiff
path: root/src/map.cc
diff options
context:
space:
mode:
authorfusion32 <marcopuzziello@gmail.com>2026-05-28 23:56:29 -0300
committerfusion32 <marcopuzziello@gmail.com>2026-05-28 23:56:29 -0300
commite2ba7cd29617ae05087ad3d25c55a2eb8ce607a3 (patch)
tree2a93ee38c7cc9c83b3b89b3f0f7cbb6fcb8e8b3c /src/map.cc
parentd1c4dce3be82aa7e50ddb5b43f15ecc00a16f985 (diff)
downloadgame-e2ba7cd29617ae05087ad3d25c55a2eb8ce607a3.tar.gz
game-e2ba7cd29617ae05087ad3d25c55a2eb8ce607a3.zip
fix issues and warnings when compiling with glibc < 2.32 (#57, #58)
This also fixes some inconsistencies such as mixing both strerror and strerrordesc_np, and possible formatting issues.
Diffstat (limited to 'src/map.cc')
-rw-r--r--src/map.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map.cc b/src/map.cc
index 86b0c83..b39d25a 100644
--- a/src/map.cc
+++ b/src/map.cc
@@ -1713,7 +1713,7 @@ void PatchSector(int SectorX, int SectorY, int SectorZ, bool FullSector,
if(rename(FileNameBak, FileName) != 0){
int ErrCode = errno;
error("PatchSector: Fehler %d beim Umbenennen von %s.\n", ErrCode, FileNameBak);
- error("# Fehler %d: %s.\n", ErrCode, strerror(ErrCode));
+ error("# Fehler %d: %s.\n", ErrCode, GetErrorDescription(ErrCode));
throw "cannot patch ORIGMAP";
}
}