From aafe864873bfeef4123e8ae703d8e6f939ac0941 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sat, 30 May 2020 21:08:32 -0500 Subject: Ethan Sommer pointed out an unnecessary return. --- toys/posix/df.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toys/posix') diff --git a/toys/posix/df.c b/toys/posix/df.c index e1fd35f4..53d99f56 100644 --- a/toys/posix/df.c +++ b/toys/posix/df.c @@ -49,7 +49,7 @@ static void measure_column(int col, const char *s) static void measure_numeric_column(int col, long long n) { snprintf(toybuf, sizeof(toybuf), "%llu", n); - return measure_column(col, toybuf); + measure_column(col, toybuf); } static void show_header() -- cgit v1.2.3