From 0550d584e629432dce1cde4dab684a4716317bcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Nov=C3=A1k?= Date: Thu, 17 Apr 2025 10:38:39 +0200 Subject: [PATCH] fix some warnings --- game/gamesave.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/gamesave.c b/game/gamesave.c index 226b7ae..f43b71c 100644 --- a/game/gamesave.c +++ b/game/gamesave.c @@ -759,7 +759,7 @@ int save_game(long game_time,char *gamename, char is_autosave) char str_buff[50]; snprintf(str_buff,sizeof(str_buff),"sav.%08lx.%08lx%s", current_campaign, game_time, is_autosave?AUTOSAVE_SUFFIX:""); - SEND_LOG("(SAVELOAD) Saving game slot %d",game_time); + SEND_LOG("(SAVELOAD) Saving game slot %ld",game_time); save_map_state(); const char *sn = build_pathname(2,gpathtable[SR_SAVES],str_buff);