diff options
author | Jan200101 <sentrycraft123@gmail.com> | 2020-09-06 13:55:00 +0200 |
---|---|---|
committer | Jan200101 <sentrycraft123@gmail.com> | 2020-09-06 13:55:00 +0200 |
commit | d07122673c9c66b41cf311ff4c9d1abed49fc669 (patch) | |
tree | 1818f7660aae60e9fbc4d328653da15a59292e78 /src/lutris.c | |
parent | a0253e25c45c66083b751d075cf9a73aa0a183f4 (diff) | |
download | polecat-d07122673c9c66b41cf311ff4c9d1abed49fc669.tar.gz polecat-d07122673c9c66b41cf311ff4c9d1abed49fc669.zip |
fix incorrectly hiding unfinished commands
its ifdef not ifndef
Diffstat (limited to 'src/lutris.c')
-rw-r--r-- | src/lutris.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lutris.c b/src/lutris.c index 3831947..ec1f14d 100644 --- a/src/lutris.c +++ b/src/lutris.c @@ -8,7 +8,7 @@ #include "common.h" const static struct Command lutris_commands[] = { -#ifndef DEBUG +#ifdef DEBUG { .name = "install", .func = lutris_install, .description = "install a lutris script" }, #endif { .name = "info", .func = lutris_info, .description = "show information about a lutris script" }, |