commit | d5996dd555edf52721b7691a4c59de016251ed39 | [log] [tgz] |
---|---|---|
author | Wolfgang Denk <wd@denx.de> | Sun Jul 13 19:51:00 2008 +0200 |
committer | Wolfgang Denk <wd@denx.de> | Sun Jul 13 19:51:00 2008 +0200 |
tree | b22b9dceee9d79106c4bb19bc115121d33da0d82 | |
parent | 0f9d5f6d6e814907794995c6a22af752040c35d9 [diff] [blame] |
Fix some more printf() format problems. Signed-off-by: Wolfgang Denk <wd@denx.de>
diff --git a/common/cmd_nvedit.c b/common/cmd_nvedit.c index aaf6d98..7089706 100644 --- a/common/cmd_nvedit.c +++ b/common/cmd_nvedit.c
@@ -99,7 +99,8 @@ } } - printf("\nEnvironment size: %d/%ld bytes\n", i, ENV_SIZE); + printf("\nEnvironment size: %d/%ld bytes\n", + i, (ulong)ENV_SIZE); return 0; }