From be628654626e83fe0a5f2d37809d85a495c7041e Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Sun, 17 May 2020 18:04:52 -0500 Subject: [PATCH] Bugfix: incorrect return status resulted in mistaken status handling --- level_2/fll_fss/c/fss.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/level_2/fll_fss/c/fss.c b/level_2/fll_fss/c/fss.c index 16a98fb..bcce0c3 100644 --- a/level_2/fll_fss/c/fss.c +++ b/level_2/fll_fss/c/fss.c @@ -40,7 +40,7 @@ extern "C" { } // for } // for - return status; + return f_none; } #endif // _di_fll_fss_snatch_ @@ -87,7 +87,7 @@ extern "C" { } // for } // for - return status; + return f_none; } #endif // _di_fll_fss_snatch_apart_ @@ -125,7 +125,7 @@ extern "C" { } // for } // for - return status; + return f_none; } #endif // _di_fll_fss_snatch_together_ @@ -165,7 +165,7 @@ extern "C" { } // for } // for - return status; + return f_none; } #endif // _di_fll_fss_snatch_mash_ @@ -220,7 +220,7 @@ extern "C" { if (f_status_is_error(status)) return status; } // for - return status; + return f_none; } #endif // _di_fll_fss_snatch_mash_apart_ @@ -258,7 +258,7 @@ extern "C" { } // for } // for - return status; + return f_none; } #endif // _di_fll_fss_snatch_mash_together_ -- 1.8.3.1