提交 2e929135 编写于 作者: D dzzxzz

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
上级 9b9aaf60
...@@ -374,7 +374,7 @@ char *rt_strncpy(char *dst, const char *src, rt_ubase_t n) ...@@ -374,7 +374,7 @@ char *rt_strncpy(char *dst, const char *src, rt_ubase_t n)
{ {
/* NUL pad the remaining n-1 bytes */ /* NUL pad the remaining n-1 bytes */
while (--n != 0) while (--n != 0)
*d++ = 0; *d++ = 0;
break; break;
} }
} while (--n != 0); } while (--n != 0);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册