projects
/
bertos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d44edf1
)
Silence warning on 32bit platforms.
author
batt
<batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 26 Sep 2008 20:44:38 +0000
(20:44 +0000)
committer
batt
<batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 26 Sep 2008 20:44:38 +0000
(20:44 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1858
38d2e660
-2303-0410-9eaa-
f027e97ec537
bertos/fs/battfs.c
patch
|
blob
|
history
diff --git
a/bertos/fs/battfs.c
b/bertos/fs/battfs.c
index 9e3ea4eedef65e487d014a173db4a36efa40582c..4dde9243baeafe184115e65ed1cbdba60a559aae 100644
(file)
--- a/
bertos/fs/battfs.c
+++ b/
bertos/fs/battfs.c
@@
-232,7
+232,7
@@
static pgcnt_t countPages(pgoff_t *filelen_table, inode_t inode)
static void movePages(struct BattFsSuper *disk, pgcnt_t src, int offset)
{
pgcnt_t dst = src + offset;
- LOG_INFO("src %d, offset %d, size %
ld\n", src, offset, (disk->page_count - MAX(dst, src)) * sizeof(pgcnt_t
));
+ LOG_INFO("src %d, offset %d, size %
d\n", src, offset, (unsigned int)((disk->page_count - MAX(dst, src)) * sizeof(pgcnt_t)
));
memmove(&disk->page_array[dst], &disk->page_array[src], (disk->page_count - MAX(dst, src)) * sizeof(pgcnt_t));
if (offset < 0)