From 091b296eb8929c938ab43f50fe28d43df5ad4318 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Fri, 8 Jun 2012 23:25:40 -0500 Subject: [PATCH] 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. --- level_0/f_conversion/c/conversion.c | 1 + 1 file changed, 1 insertion(+) 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_ -- 1.8.3.1