diff options
author | Rafaël Carré <rafael.carre@gmail.com> | 2010-08-30 23:15:00 +0000 |
---|---|---|
committer | Rafaël Carré <rafael.carre@gmail.com> | 2010-08-30 23:15:00 +0000 |
commit | 1477aca562038acfc1a9d382651519c593ea1ec4 (patch) | |
tree | 908a837da9ec010deca869c945601739f4629d04 | |
parent | 589490c6c55e2a0bf31566e260c29445818f19e9 (diff) | |
download | rockbox-1477aca562038acfc1a9d382651519c593ea1ec4.tar.gz rockbox-1477aca562038acfc1a9d382651519c593ea1ec4.zip |
typo in r27953 spotted by kugel: s/long/ssize_t/
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27955 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | firmware/common/format.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/common/format.c b/firmware/common/format.c index 0fa838f511..240dd1ebd5 100644 --- a/firmware/common/format.c +++ b/firmware/common/format.c @@ -173,7 +173,7 @@ int format( ch = *fmt++; switch(ch) { case 'd': - szval = szsign = va_arg (ap, long); + szval = szsign = va_arg (ap, ssize_t); if (szval < 0) szval = -szval; do |