1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-06 22:10:53 +00:00

[win32] Check if cmdline_options is not NULL

This commit is contained in:
Witold Filipczyk 2024-04-07 19:57:59 +02:00
parent a1b438a140
commit 4c3d7ecbc4

View File

@ -77,7 +77,7 @@ static const char *keymap_2[] = {
#define TRACE(m...) \
do { \
if (get_cmd_opt_int("verbose") == 2) \
if (cmdline_options && (get_cmd_opt_int("verbose") == 2)) \
DBG(m); \
} while (0)