From: Andi Kleen <[email protected]> Apparently someone's C library declares strtoul with warn_unused_result. Cast to void to avoid the warning. Error handling is not useful here.
Cc: Viresh Kumar <[email protected]> Signed-off-by: Andi Kleen <[email protected]> --- scripts/mod/modpost.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c index 0663556..b9cf439 100644 --- a/scripts/mod/modpost.c +++ b/scripts/mod/modpost.c @@ -1707,7 +1707,7 @@ static char *remove_dot(char *s) int n = strcspn(s, "."); if (n > 0 && s[n] != 0) { - strtoul(s + n + 1, &end, 10); + (void)strtoul(s + n + 1, &end, 10); if (end > s + n + 1 && (*end == '.' || *end == 0)) s[n] = 0; } -- 1.8.5.2 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

