mirror of https://github.com/martanne/abduco
Avoid usage of non-ISO-standard escape sequences
This commit is contained in:
parent
433de0e9ca
commit
d23c9982c7
2
abduco.c
2
abduco.c
|
|
@ -191,7 +191,7 @@ static bool recv_packet(int socket, Packet *pkt) {
|
|||
static void info(const char *str, ...) {
|
||||
va_list ap;
|
||||
va_start(ap, str);
|
||||
fprintf(stderr, "\e[999H");
|
||||
fprintf(stderr, "\033[999H");
|
||||
if (str) {
|
||||
fprintf(stderr, "%s: %s: ", server.name, server.session_name);
|
||||
vfprintf(stderr, str, ap);
|
||||
|
|
|
|||
Loading…
Reference in New Issue