From: Kevin Day Date: Sat, 9 Jun 2012 04:25:40 +0000 (-0500) Subject: Update: return f_unknown at end of f_is_digit X-Git-Tag: 0.3.0~14 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=091b296eb8929c938ab43f50fe28d43df5ad4318;p=fll Update: return f_unknown at end of f_is_digit If for some reason the end of the function is reached, f_unknown is returned. This should be impossible and if compilers give an error, then that line can be removed. --- diff --git a/level_0/f_conversion/c/conversion.c b/level_0/f_conversion/c/conversion.c index ce40dba..dbf94d6 100644 --- a/level_0/f_conversion/c/conversion.c +++ b/level_0/f_conversion/c/conversion.c @@ -30,6 +30,7 @@ extern "C"{ return f_false; } + return f_unknown; } #endif // _di_f_is_digit_