summaryrefslogtreecommitdiff
path: root/src/kern/tru64/printf.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/kern/tru64/printf.cc')
-rw-r--r--src/kern/tru64/printf.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kern/tru64/printf.cc b/src/kern/tru64/printf.cc
index 600e96818..dfd300c12 100644
--- a/src/kern/tru64/printf.cc
+++ b/src/kern/tru64/printf.cc
@@ -177,7 +177,7 @@ Printf(Arguments args)
break;
case 's': {
- const char *s = (const char *)args;
+ const char *s = (char *)args;
if (!s)
s = "<NULL>";