diff options
Diffstat (limited to 'core/ustring.cpp')
| -rw-r--r-- | core/ustring.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ustring.cpp b/core/ustring.cpp index 72ad2a15e..f3c89a790 100644 --- a/core/ustring.cpp +++ b/core/ustring.cpp @@ -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; } |
