diff options
| author | fusion32 <marcopuzziello@gmail.com> | 2026-05-28 23:56:29 -0300 |
|---|---|---|
| committer | fusion32 <marcopuzziello@gmail.com> | 2026-05-28 23:56:29 -0300 |
| commit | e2ba7cd29617ae05087ad3d25c55a2eb8ce607a3 (patch) | |
| tree | 2a93ee38c7cc9c83b3b89b3f0f7cbb6fcb8e8b3c /src/operate.cc | |
| parent | d1c4dce3be82aa7e50ddb5b43f15ecc00a16f985 (diff) | |
| download | game-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/operate.cc')
| -rw-r--r-- | src/operate.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/operate.cc b/src/operate.cc index b67b3dd..715c272 100644 --- a/src/operate.cc +++ b/src/operate.cc @@ -2406,7 +2406,7 @@ void Talk(uint32 CreatureID, int Mode, const char *Addressee, const char *Text, TConnection *Connection = GetFirstConnection(); while(Connection != NULL){ if(Connection->Live()){ - SendMessage(Connection, TALK_ADMIN_MESSAGE, Text); + SendMessage(Connection, TALK_ADMIN_MESSAGE, "%s", Text); } Connection = GetNextConnection(); |
