mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
compile fixes
This commit is contained in:
@@ -3096,7 +3096,7 @@ String String::http_escape() const {
|
||||
res += ord;
|
||||
} else {
|
||||
char h_Val[3];
|
||||
_snprintf(h_Val, 3, "%.2X", ord);
|
||||
snprintf(h_Val, 3, "%.2X", ord);
|
||||
res += "%";
|
||||
res += h_Val;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user