Add GCC format attributes to print functions

Fix format problems found.

Signed-off-by: Blue Swirl <blauwirbel@gmail.com>

git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@888 f158a5a8-5612-0410-a976-696ce0be7e32
This commit is contained in:
Blue Swirl
2010-10-09 08:27:09 +00:00
parent a5eb733975
commit a5cba745e5
3 changed files with 14 additions and 9 deletions

View File

@@ -524,7 +524,7 @@ hfs_files_dir( hfs_info_t *dummy )
forth_printf("\n");
while( !hfs_readdir(common->dir, &ent) ) {
forth_printf("% 10d ", ent.u.file.dsize);
forth_printf("% 10ld ", ent.u.file.dsize);
print_date(ent.mddate);
if( ent.flags & HFS_ISDIR )
forth_printf("%s\\\n", ent.name);