2010-11-16 Joel Sherrill <joel.sherrill@oarcorp.com>

* libcsupport/src/putk.c: Remove useless variable initialization
	pointed out by clang.
This commit is contained in:
Joel Sherrill
2010-11-16 17:47:06 +00:00
parent fc8a8aab53
commit fd83f1687d
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2010-11-16 Joel Sherrill <joel.sherrill@oarcorp.com>
* libcsupport/src/putk.c: Remove useless variable initialization
pointed out by clang.
2010-11-11 Sebastian Huber <sebastian.huber@embedded-brains.de>
* score/include/rtems/score/userext.h: Documentation.

View File

@@ -22,7 +22,7 @@
*/
void putk(const char *s)
{
const char *p = s;
const char *p;
for (p=s ; *p ; p++ )
BSP_output_char(*p);