FINALLY MADE WEBSOCKETS WORK AAAAAAAAAAAAAAAAA

This commit is contained in:
2025-02-08 16:16:55 +01:00
parent 1c7170bb81
commit bf2e1e347f
6 changed files with 28 additions and 27 deletions
+2 -2
View File
@@ -19,7 +19,7 @@ macro_rules! rs_errln {
"\x1b[0m",
format!($($arg)*)
);
process::exit(-1);
process::exit(1);
};
}
@@ -32,6 +32,6 @@ macro_rules! errln {
"\x1b[0m",
format!($($arg)*)
);
process::exit(-1);
std::process::exit(1);
};
}