4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-21 01:47:09 +08:00

delete a needless tab in function

char *rt_strncpy(char *dst, const char *src, rt_ubase_t n)

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1887 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
dzzxzz 2011-12-29 06:35:55 +00:00
parent 9b9aaf6032
commit 2e9291357d

View File

@ -374,7 +374,7 @@ char *rt_strncpy(char *dst, const char *src, rt_ubase_t n)
{
/* NUL pad the remaining n-1 bytes */
while (--n != 0)
*d++ = 0;
*d++ = 0;
break;
}
} while (--n != 0);