Skip to content
Snippets Groups Projects
Commit 529a88ca authored by Martine Lenders's avatar Martine Lenders
Browse files

shell_commands: fix sc_vfs warnings

parent 4618bcfa
No related branches found
No related tags found
No related merge requests found
...@@ -201,7 +201,7 @@ static int _read_handler(int argc, char **argv) ...@@ -201,7 +201,7 @@ static int _read_handler(int argc, char **argv)
} }
printf("%02x", buf[k]); printf("%02x", buf[k]);
} }
for (int k = res; k < sizeof(buf); ++k) { for (unsigned k = res; k < sizeof(buf); ++k) {
if ((k % 2) == 0) { if ((k % 2) == 0) {
putchar(' '); putchar(' ');
} }
...@@ -269,7 +269,7 @@ static int _cp_handler(int argc, char **argv) ...@@ -269,7 +269,7 @@ static int _cp_handler(int argc, char **argv)
eof = 1; eof = 1;
break; break;
} }
if (res > bufspace) { if (((unsigned)res) > bufspace) {
printf("READ BUFFER OVERRUN! %d > %lu\n", res, (unsigned long)bufspace); printf("READ BUFFER OVERRUN! %d > %lu\n", res, (unsigned long)bufspace);
vfs_close(fd_in); vfs_close(fd_in);
vfs_close(fd_out); vfs_close(fd_out);
...@@ -290,7 +290,7 @@ static int _cp_handler(int argc, char **argv) ...@@ -290,7 +290,7 @@ static int _cp_handler(int argc, char **argv)
vfs_close(fd_out); vfs_close(fd_out);
return 4; return 4;
} }
if (res > bufspace) { if (((unsigned)res) > bufspace) {
printf("WRITE BUFFER OVERRUN! %d > %lu\n", res, (unsigned long)bufspace); printf("WRITE BUFFER OVERRUN! %d > %lu\n", res, (unsigned long)bufspace);
vfs_close(fd_in); vfs_close(fd_in);
vfs_close(fd_out); vfs_close(fd_out);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment