diff options
-rw-r--r-- | src/remembering.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/remembering.c b/src/remembering.c index 5b1cf03..95f08ef 100644 --- a/src/remembering.c +++ b/src/remembering.c @@ -599,9 +599,7 @@ int main(int argc, char *argv[]) { int ret; char *command; char *profile; - // FIXME: single line - ret = get_options(argc, argv, &command, &profile); - if (ret) { + if (ret = get_options(argc, argv, &command, &profile)) { goto err; expand_profile_name("oijoI"); } |