From eda62844c122322460b3fbbcb03d471d4746df46 Mon Sep 17 00:00:00 2001 From: "goprife@gmail.com" Date: Sun, 4 Nov 2012 06:02:40 +0000 Subject: [PATCH] fix the line break character in ff.c git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2390 bbd45198-f89e-11dd-88c7-29a3b14d5316 --- components/dfs/filesystems/elmfat/ff.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/components/dfs/filesystems/elmfat/ff.c b/components/dfs/filesystems/elmfat/ff.c index e967bc76d..014d70f59 100644 --- a/components/dfs/filesystems/elmfat/ff.c +++ b/components/dfs/filesystems/elmfat/ff.c @@ -522,13 +522,13 @@ void mem_cpy (void* dst, const void* src, UINT cnt) { BYTE *d = (BYTE*)dst; const BYTE *s = (const BYTE*)src; -#if _WORD_ACCESS == 1 - if (((unsigned)d & 0x03)!=0 || ((unsigned)s & 0x03)!=0) - { - while (cnt--) - *d++ = *s++; - return; - } +#if _WORD_ACCESS == 1 + if (((unsigned)d & 0x03)!=0 || ((unsigned)s & 0x03)!=0) + { + while (cnt--) + *d++ = *s++; + return; + } while (cnt >= sizeof(int)) { *(int*)d = *(int*)s; -- GitLab