mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
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:
committed by
Dave Chinner
parent
b90938ec1d
commit
281c087fce
+1
-1
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user