Skip to content

Commit 4ea1c23

Browse files
authored
Update bmfslite.c
Clear warning on compile
1 parent 5af5339 commit 4ea1c23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bmfslite.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ void bmfs_list(void)
240240
}
241241
else // Valid entry
242242
{
243-
printf("%-32s %8lld %10lld %7lld\n", entry.FileName, (long long int)entry.FileSize, (long long int)(entry.ReservedBlocks*blockSize), entry.StartingBlock);
243+
printf("%-32s %8lld %10lld %7lld\n", entry.FileName, (long long int)entry.FileSize, (long long int)(entry.ReservedBlocks*blockSize), (long long int)entry.StartingBlock);
244244
}
245245
}
246246
}

0 commit comments

Comments
 (0)