From 15b08b483aba831c9be200a3b8fcd1839e94a5a7 Mon Sep 17 00:00:00 2001 From: prife Date: Sat, 6 Jul 2013 16:41:10 +0800 Subject: [PATCH] dfs: fix the variable definition bug in copy, found by ffgamelife from rt-thread.org --- components/dfs/src/dfs_file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/dfs/src/dfs_file.c b/components/dfs/src/dfs_file.c index 05e76c96f7..441e322559 100644 --- a/components/dfs/src/dfs_file.c +++ b/components/dfs/src/dfs_file.c @@ -599,7 +599,7 @@ void copy(const char *src, const char *dst) { struct dfs_fd src_fd; rt_uint8_t *block_ptr; - rt_uint32_t read_bytes; + rt_int32_t read_bytes; block_ptr = rt_malloc(BUF_SZ); if (block_ptr == RT_NULL) -- GitLab