Remove the following warning message. =============================== tlibio.c: In function 'lio_set_debug': tlibio.c:212:1: warning: type of 'level' defaults to 'int' [-Wimplicit-int] lio_set_debug(level) ^ ============================== Signed-off-by: Satoru Takeuchi <takeuchi_satoru@xxxxxxxxxxxxxx> --- lib/tlibio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tlibio.c b/lib/tlibio.c index f2078da..9b1b890 100644 --- a/lib/tlibio.c +++ b/lib/tlibio.c @@ -209,7 +209,7 @@ int *max; * This function will allow someone to set the debug level. ***********************************************************************/ int -lio_set_debug(level) +lio_set_debug(int level) { int old; -- 2.5.0 -- To unsubscribe from this list: send the line "unsubscribe fstests" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html