Skip to content

Commit b72f92f

Browse files
committed
Fix bad __LINUX__ checks
1 parent c88c2b7 commit b72f92f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

linux/lnxapp.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070

7171
#include <cstdlib>
7272
#include <cctype>
73-
#ifdef __LINUX___
73+
#ifdef __LINUX__
7474
#include <sys/time.h>
7575
#include <term.h>
7676
#include <termios.h>
@@ -85,7 +85,7 @@
8585
#undef buttons
8686
#endif
8787

88-
#ifdef __LINUX___
88+
#ifdef __LINUX__
8989
static struct termios Linux_initial_terminal_settings;
9090
#endif
9191

0 commit comments

Comments
 (0)