mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-18 08:02:48 +00:00
b32681a60b
Submitted by: maintainer
17 lines
378 B
C
17 lines
378 B
C
*** print.c.orig Fri Apr 11 15:54:36 1997
|
|
--- print.c Mon Mar 15 18:55:13 2004
|
|
***************
|
|
*** 279,285 ****
|
|
--- 279,289 ----
|
|
VA_START(format->args, fmt);
|
|
n += printfmt(format, fmt);
|
|
va_end(format->args);
|
|
+ #if NO_VA_LIST_ASSIGN
|
|
+ memcpy(format->args, saveargs, sizeof(va_list));
|
|
+ #else
|
|
format->args = saveargs;
|
|
+ #endif
|
|
|
|
return n + format->flushed;
|
|
}
|