From 07ff5841db8918e66b9873e7e40c64a8780fbf48 Mon Sep 17 00:00:00 2001 From: Tomohiro Kusumi Date: Thu, 14 May 2015 09:36:40 +0900 Subject: [PATCH] Fix warning from gmake on BSD stat.c: In function 'block_state_category': stat.c:514:1: warning: control reaches end of non-void function [-Wreturn-type] } --- stat.c | 1 + 1 file changed, 1 insertion(+) diff --git a/stat.c b/stat.c index 9a30bea4..785a73dd 100644 --- a/stat.c +++ b/stat.c @@ -511,6 +511,7 @@ static int block_state_category(int block_state) return 2; default: assert(0); + return -1; } } -- 2.25.1