提交 cc81b47b 编写于 作者: L liang yongxiang

[components] fixed signed/unsigned mismatch warning

上级 8dc83822
...@@ -358,7 +358,7 @@ rt_err_t rt_pipe_close (rt_device_t device) ...@@ -358,7 +358,7 @@ rt_err_t rt_pipe_close (rt_device_t device)
rt_size_t rt_pipe_read (rt_device_t device, rt_off_t pos, void *buffer, rt_size_t count) rt_size_t rt_pipe_read (rt_device_t device, rt_off_t pos, void *buffer, rt_size_t count)
{ {
uint8_t *pbuf; uint8_t *pbuf;
int read_bytes = 0; rt_size_t read_bytes = 0;
rt_pipe_t *pipe = (rt_pipe_t *)device; rt_pipe_t *pipe = (rt_pipe_t *)device;
if (device == RT_NULL) if (device == RT_NULL)
...@@ -386,7 +386,7 @@ rt_size_t rt_pipe_read (rt_device_t device, rt_off_t pos, void *buffer, rt_siz ...@@ -386,7 +386,7 @@ rt_size_t rt_pipe_read (rt_device_t device, rt_off_t pos, void *buffer, rt_siz
rt_size_t rt_pipe_write (rt_device_t device, rt_off_t pos, const void *buffer, rt_size_t count) rt_size_t rt_pipe_write (rt_device_t device, rt_off_t pos, const void *buffer, rt_size_t count)
{ {
uint8_t *pbuf; uint8_t *pbuf;
int write_bytes = 0; rt_size_t write_bytes = 0;
rt_pipe_t *pipe = (rt_pipe_t *)device; rt_pipe_t *pipe = (rt_pipe_t *)device;
if (device == RT_NULL) if (device == RT_NULL)
......
...@@ -282,7 +282,7 @@ RTM_EXPORT(system); ...@@ -282,7 +282,7 @@ RTM_EXPORT(system);
static int _msh_exec_cmd(char *cmd, rt_size_t length, int *retp) static int _msh_exec_cmd(char *cmd, rt_size_t length, int *retp)
{ {
int argc; int argc;
int cmd0_size = 0; rt_size_t cmd0_size = 0;
cmd_function_t cmd_func; cmd_function_t cmd_func;
char *argv[RT_FINSH_ARG_MAX]; char *argv[RT_FINSH_ARG_MAX];
...@@ -448,7 +448,7 @@ void msh_auto_complete_path(char *path) ...@@ -448,7 +448,7 @@ void msh_auto_complete_path(char *path)
} }
else else
{ {
int length, min_length; rt_size_t length, min_length;
min_length = 0; min_length = 0;
for (;;) for (;;)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册