remove several instances of unnecessary emptry str "" after SDL_PRI???

This commit is contained in:
Ozkan Sezer 2024-01-18 17:25:50 +03:00
parent c540c77756
commit f7ba340999
5 changed files with 16 additions and 17 deletions

View file

@ -480,7 +480,7 @@ const char *SDL_GetStringProperty(SDL_PropertiesID props, const char *name, cons
if (property->string_storage) {
value = property->string_storage;
} else {
SDL_asprintf(&property->string_storage, "%" SDL_PRIs64 "", property->value.number_value);
SDL_asprintf(&property->string_storage, "%" SDL_PRIs64, property->value.number_value);
if (property->string_storage) {
value = property->string_storage;
}