mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Remove uses of vformat() with no placeholders
This is identical to passing the string directly.
(cherry picked from commit dcc92c174e)
This commit is contained in:
parent
a084f0568f
commit
e32330473a
3 changed files with 14 additions and 14 deletions
|
|
@ -315,7 +315,7 @@ Dictionary OS_Unix::get_memory_info() const {
|
|||
mach_msg_type_number_t count = HOST_VM_INFO64_COUNT;
|
||||
vm_statistics64_data_t vmstat;
|
||||
if (host_statistics64(mach_host_self(), HOST_VM_INFO64, (host_info64_t)&vmstat, &count) != KERN_SUCCESS) {
|
||||
ERR_PRINT(vformat("Could not get host vm statistics."));
|
||||
ERR_PRINT("Could not get host vm statistics.");
|
||||
}
|
||||
struct xsw_usage swap_used;
|
||||
len = sizeof(swap_used);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue