Missing slash

This commit is contained in:
dovecoteescapee 2024-02-24 23:13:25 +03:00 committed by GitHub
parent 90ca8aca01
commit af700b02dc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -22,7 +22,7 @@
#else
#ifdef ANDROID_APP
#define uniperror(str) \
__android_log_print(ANDROID_LOG_ERROR, "proxy",
__android_log_print(ANDROID_LOG_ERROR, "proxy", \
"%s: %s\n", str, strerror(errno))
#else
#define uniperror(str) \
@ -62,4 +62,4 @@ inline const int unie(int e)
#define LOG(s, str, ...) \
if (params.debug >= s) \
fprintf(stderr, str, ##__VA_ARGS__)
#endif
#endif