forked from Imagelibrary/rtems
2002-04-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* pppd/utils.c: Adapt to gcc-3.x.
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
2002-04-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||
|
||||
* pppd/utils.c: Adapt to gcc-3.x.
|
||||
|
||||
2002-04-11 Chris Johns <ccj@acm.org>
|
||||
|
||||
* c/src/libnetworking/rtems/rtems_bsdnet.h: To address PR59, added
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
2002-04-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||
|
||||
* pppd/utils.c: Adapt to gcc-3.x.
|
||||
|
||||
2002-04-11 Chris Johns <ccj@acm.org>
|
||||
|
||||
* c/src/libnetworking/rtems/rtems_bsdnet.h: To address PR59, added
|
||||
|
||||
@@ -248,10 +248,10 @@ vslprintf(buf, buflen, fmt, args)
|
||||
break;
|
||||
case 'r':
|
||||
f = va_arg(args, char *);
|
||||
#ifndef __powerpc__
|
||||
#ifndef __PPC__
|
||||
n = vslprintf(buf, buflen + 1, f, va_arg(args, va_list));
|
||||
#else
|
||||
/* On the powerpc, a va_list is an array of 1 structure */
|
||||
/* HACK: On the powerpc, a va_list is an array of 1 structure */
|
||||
n = vslprintf(buf, buflen + 1, f, va_arg(args, void *));
|
||||
#endif
|
||||
buf += n;
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
2002-04-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||
|
||||
* pppd/utils.c: Adapt to gcc-3.x.
|
||||
|
||||
2002-04-11 Chris Johns <ccj@acm.org>
|
||||
|
||||
* c/src/libnetworking/rtems/rtems_bsdnet.h: To address PR59, added
|
||||
|
||||
@@ -248,10 +248,10 @@ vslprintf(buf, buflen, fmt, args)
|
||||
break;
|
||||
case 'r':
|
||||
f = va_arg(args, char *);
|
||||
#ifndef __powerpc__
|
||||
#ifndef __PPC__
|
||||
n = vslprintf(buf, buflen + 1, f, va_arg(args, va_list));
|
||||
#else
|
||||
/* On the powerpc, a va_list is an array of 1 structure */
|
||||
/* HACK: On the powerpc, a va_list is an array of 1 structure */
|
||||
n = vslprintf(buf, buflen + 1, f, va_arg(args, void *));
|
||||
#endif
|
||||
buf += n;
|
||||
|
||||
Reference in New Issue
Block a user