lib/tlibio: Fix a build warning

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@jp.fujitsu.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
This commit is contained in:
Satoru Takeuchi
2016-04-05 11:41:40 +10:00
committed by Dave Chinner
parent b90938ec1d
commit 281c087fce
+1 -1
View File
@@ -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;