compile fixes
This commit is contained in:
parent
f858adf150
commit
2769da7744
@ -3096,7 +3096,7 @@ String String::http_escape() const {
|
|||||||
res += ord;
|
res += ord;
|
||||||
} else {
|
} else {
|
||||||
char h_Val[3];
|
char h_Val[3];
|
||||||
_snprintf(h_Val, 3, "%.2X", ord);
|
snprintf(h_Val, 3, "%.2X", ord);
|
||||||
res += "%";
|
res += "%";
|
||||||
res += h_Val;
|
res += h_Val;
|
||||||
}
|
}
|
||||||
|
@ -34,7 +34,7 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include "print_string.h"
|
#include "print_string.h"
|
||||||
#include "servers/physics/physics_server_sw.h"
|
#include "servers/physics/physics_server_sw.h"
|
||||||
|
#include "errno.h"
|
||||||
|
|
||||||
#include "X11/Xutil.h"
|
#include "X11/Xutil.h"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user