]> Kevux Git Server - fll/commitdiff
Cleanup: The fss_status_code never returns F_false.
authorKevin Day <thekevinday@gmail.com>
Wed, 24 Aug 2022 23:42:34 +0000 (18:42 -0500)
committerKevin Day <thekevinday@gmail.com>
Wed, 24 Aug 2022 23:42:34 +0000 (18:42 -0500)
At some point I planned on returning F_true and F_false to allow for easier scripting.
This never happened and so this check is dead code.

The next development cycle may introduce this easier to script functionality.

level_3/fss_status_code/c/main.c

index 4014fa90f4495160256dc3fb5cceb30143272a35..5b45227b3dbb0d4cad86ac32ec47a2fbf84bb60c 100644 (file)
@@ -21,7 +21,7 @@ int main(const int argc, const f_string_t *argv, const f_string_t *envp) {
 
   fll_program_standard_setdown(&data.signal);
 
-  if (F_status_is_error(status) || status == F_false) return 1;
+  if (F_status_is_error(status)) return 1;
 
   return 0;
 }