summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSatoru Takeuchi <takeuchi_satoru@jp.fujitsu.com>2016-04-05 11:41:40 +1000
committerDave Chinner <david@fromorbit.com>2016-04-05 11:41:40 +1000
commit281c087fcec08e4c15f1bfd54aa60cddb88538ca (patch)
tree12b9dd6891ff55ee4fb426f9e3ab274977a1dd95 /lib
parentb90938ec1de646eac69495cca969a79a011ff73d (diff)
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>
Diffstat (limited to 'lib')
-rw-r--r--lib/tlibio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tlibio.c b/lib/tlibio.c
index f2078daa..9b1b8902 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;