mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-24 02:25:28 +00:00
Fix PLOGE
This commit is contained in:
parent
8745c7884e
commit
ef9d463bd7
@ -35,7 +35,7 @@ extern struct log_callback log_cb;
|
||||
#define LOGI(...) log_handler(L_INFO, __VA_ARGS__)
|
||||
#define LOGW(...) log_handler(L_WARN, __VA_ARGS__)
|
||||
#define LOGE(...) log_handler(L_ERR, __VA_ARGS__)
|
||||
#define PLOGE(fmt, args...) LOGE(fmt " failed with %d: %s", ##args, errno, strerror(errno))
|
||||
#define PLOGE(fmt, args...) LOGE(fmt " failed with %d: %s\n", ##args, errno, strerror(errno))
|
||||
|
||||
int nop_log(const char *fmt, va_list ap);
|
||||
void nop_ex(int i);
|
||||
|
Loading…
Reference in New Issue
Block a user