From 6ae0b45820630973ec992270205b18b1971d47f0 Mon Sep 17 00:00:00 2001 From: "bernard.xiong" Date: Wed, 1 Dec 2010 01:54:26 +0000 Subject: [PATCH] fix compiling warning. git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1167 bbd45198-f89e-11dd-88c7-29a3b14d5316 --- components/dfs/src/dfs_file.c | 2 +- components/finsh/shell.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/dfs/src/dfs_file.c b/components/dfs/src/dfs_file.c index 5939cd680..15b42a2af 100644 --- a/components/dfs/src/dfs_file.c +++ b/components/dfs/src/dfs_file.c @@ -532,7 +532,7 @@ void copy(const char* src, const char* dst) { struct dfs_fd src_fd; rt_uint8_t *block_ptr; - rt_uint32_t read_bytes, write_bytes; + rt_uint32_t read_bytes; block_ptr = rt_malloc(BUF_SZ); if (block_ptr == RT_NULL) diff --git a/components/finsh/shell.h b/components/finsh/shell.h index d810a71c0..76b5249c6 100644 --- a/components/finsh/shell.h +++ b/components/finsh/shell.h @@ -55,6 +55,6 @@ void finsh_set_echo(rt_uint32_t echo); rt_uint32_t finsh_get_echo(void); void finsh_set_device(const char* device_name); -const char* finsh_get_device(); +const char* finsh_get_device(void); #endif -- GitLab