(svn r26486) -Codechange: replace a number of snprintfs with seprintf
This commit is contained in:
@@ -2614,7 +2614,7 @@ static SaveOrLoadResult DoLoad(LoadFilter *reader, bool load_check)
|
||||
/* loader for this savegame type is not implemented? */
|
||||
if (fmt->init_load == NULL) {
|
||||
char err_str[64];
|
||||
snprintf(err_str, lengthof(err_str), "Loader for '%s' is not available.", fmt->name);
|
||||
seprintf(err_str, lastof(err_str), "Loader for '%s' is not available.", fmt->name);
|
||||
SlError(STR_GAME_SAVELOAD_ERROR_BROKEN_INTERNAL_ERROR, err_str);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user