mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-06 22:08:41 +00:00
fix __va_args__ nonsense in rdi_from_dwarf; fix incorrect mask check in linux os_file_open
This commit is contained in:
@@ -430,9 +430,9 @@ entry_point(CmdLine *cmd_line)
|
||||
// track parse success
|
||||
B32 successful_parse = 1;
|
||||
|
||||
#define PARSE_CHECK_ERROR(p,fmt,...) do{ if ((p) == 0){ \
|
||||
#define PARSE_CHECK_ERROR(p, fmt, ...) do{ if ((p) == 0){ \
|
||||
successful_parse = 0; \
|
||||
fprintf(stdout, "error(parsing): " fmt "\n", __VA_ARGS__); \
|
||||
fprintf(stdout, "error(parsing): " fmt "\n",##__VA_ARGS__); \
|
||||
} }while(0)
|
||||
|
||||
// parse elf
|
||||
|
||||
Reference in New Issue
Block a user