mirror of
https://github.com/vivier/EMILE.git
synced 2025-04-06 21:37:06 +00:00
correct printf format for st_size
This commit is contained in:
parent
907bb917e6
commit
b1ed42201b
@ -67,7 +67,7 @@ int main(int argc, char **argv)
|
||||
if (get_info) {
|
||||
struct stream_stat st;
|
||||
iso9660_fstat(file, &st);
|
||||
printf("%zd %zd\n", st.st_base * 4, st.st_size);
|
||||
printf("%ld %ld\n", st.st_base * 4, st.st_size);
|
||||
} else {
|
||||
while((size = iso9660_read(file, buffer, 512)) > 0)
|
||||
write(STDOUT_FILENO, buffer, size);
|
||||
|
Loading…
x
Reference in New Issue
Block a user