remove several instances of unnecessary emptry str "" after SDL_PRI???
This commit is contained in:
parent
c540c77756
commit
f7ba340999
5 changed files with 16 additions and 17 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue