From fd83f1687d2062041b36dead51fe880ea5ef4bed Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 16 Nov 2010 17:47:06 +0000 Subject: 2010-11-16 Joel Sherrill * libcsupport/src/putk.c: Remove useless variable initialization pointed out by clang. --- cpukit/libcsupport/src/putk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpukit/libcsupport') 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); -- cgit v1.2.3