diff options
Diffstat (limited to '')
-rw-r--r-- | src/argparser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/argparser.c b/src/argparser.c index b3111e4..527b40e 100644 --- a/src/argparser.c +++ b/src/argparser.c @@ -125,7 +125,7 @@ void args_init(const char* description, const char* usage, const char* longdescr { char* term = getenv("TERM"); args_linuxvt = 0; - if (term == null) + if (term != null) if (*(term + 0) == 'l') if (*(term + 1) == 'i') if (*(term + 2) == 'n') |