This commit is contained in:
Blaz Kristan
2024-08-05 16:42:21 +02:00
parent d2401a212a
commit e82f38e277
7 changed files with 73 additions and 90 deletions

View File

@@ -148,7 +148,7 @@ void sappends(char stype, const char* key, char* val)
bool oappendi(int i)
{
char s[11];
char s[12]; // 32bit signed number can have 10 digits plus - sign
sprintf(s, "%d", i);
return oappend(s);
}