mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-27 15:32:59 +02:00
neutrino: fix 32<->64bit format string warnings
use portable C99 format string macros for 64bit types to fix many warnings when compiling for 64bit architectures, add some (int) casts for size_t
This commit is contained in:
@@ -185,7 +185,7 @@ int check_dir(const char * dir)
|
||||
ret = 0;
|
||||
break; //ok
|
||||
default:
|
||||
fprintf(stderr, "%s Unknow File system type: %i\n" ,dir ,s.f_type);
|
||||
fprintf(stderr, "%s Unknown filesystem type: 0x%x\n", dir, (int)s.f_type);
|
||||
break; // error
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user