summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/putk.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-11-16 17:47:06 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-11-16 17:47:06 +0000
commitfd83f1687d2062041b36dead51fe880ea5ef4bed (patch)
treeb98a238c04120591cabf70f0741519b3f72db666 /cpukit/libcsupport/src/putk.c
parent2010-11-16 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-fd83f1687d2062041b36dead51fe880ea5ef4bed.tar.bz2
2010-11-16 Joel Sherrill <joel.sherrill@oarcorp.com>
* libcsupport/src/putk.c: Remove useless variable initialization pointed out by clang.
Diffstat (limited to 'cpukit/libcsupport/src/putk.c')
-rw-r--r--cpukit/libcsupport/src/putk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/libcsupport/src/putk.c b/cpukit/libcsupport/src/putk.c
index 71ccc9931e..d804cf05e8 100644
--- a/cpukit/libcsupport/src/putk.c
+++ b/cpukit/libcsupport/src/putk.c
@@ -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);