summaryrefslogtreecommitdiffstats
path: root/cpukit/pppd
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/pppd')
-rw-r--r--cpukit/pppd/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/pppd/utils.c b/cpukit/pppd/utils.c
index 74b7fc48a3..b4f0e39ab2 100644
--- a/cpukit/pppd/utils.c
+++ b/cpukit/pppd/utils.c
@@ -248,7 +248,7 @@ vslprintf(buf, buflen, fmt, args)
break;
case 'r':
f = va_arg(args, char *);
-#ifndef __PPC__
+#if !defined(__PPC__) && !defined(__i960__)
n = vslprintf(buf, buflen + 1, f, va_arg(args, va_list));
#else
/* HACK: On the powerpc, a va_list is an array of 1 structure */