src/system/mtdutils: Fix compiler warnings

Origin commit data
------------------
Commit: db59b7d3f1
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2013-10-15 (Tue, 15 Oct 2013)
This commit is contained in:
Michael Liebmann
2013-10-15 21:55:38 +02:00
parent c0846d75a4
commit 52e2d90147
2 changed files with 6 additions and 5 deletions

View File

@@ -27,13 +27,14 @@ static int jffs2_rtime_compress(unsigned char *data_in, unsigned char *cpage_out
uint32_t *sourcelen, uint32_t *dstlen) uint32_t *sourcelen, uint32_t *dstlen)
{ {
short positions[256]; short positions[256];
int outpos = 0; uint32_t outpos = 0;
int pos=0; uint32_t pos=0;
memset(positions,0,sizeof(positions)); memset(positions,0,sizeof(positions));
while (pos < (*sourcelen) && outpos+2 <= (*dstlen)) { while (pos < (*sourcelen) && outpos+2 <= (*dstlen)) {
int backpos, runlen=0; uint32_t backpos;
int runlen=0;
unsigned char value; unsigned char value;
value = data_in[pos]; value = data_in[pos];

View File

@@ -756,7 +756,7 @@ void CMkfsJFFS2::padblock(void)
{ {
while (out_ofs % erase_block_size) { while (out_ofs % erase_block_size) {
full_write(out_fd, ffbuf, min(sizeof(ffbuf), full_write(out_fd, ffbuf, min(sizeof(ffbuf),
erase_block_size - (out_ofs % erase_block_size))); (size_t)(erase_block_size - (out_ofs % erase_block_size))));
} }
} }
@@ -868,7 +868,7 @@ void CMkfsJFFS2::create_target_filesystem(struct filesystem_entry *root)
} }
} else { } else {
while (out_ofs < pad_fs_size) { while (out_ofs < pad_fs_size) {
full_write(out_fd, ffbuf, min(sizeof(ffbuf), pad_fs_size - out_ofs)); full_write(out_fd, ffbuf, min(sizeof(ffbuf), (size_t)(pad_fs_size - out_ofs)));
} }
} }