Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-6]: src/sys/arch/vax/include Pullup rev 1.16 (requested by klei...



details:   https://anonhg.NetBSD.org/src/rev/8052535f65d2
branches:  netbsd-1-6
changeset: 531198:8052535f65d2
user:      jmc <jmc%NetBSD.org@localhost>
date:      Sun Mar 28 09:01:51 2004 +0000

description:
Pullup rev 1.16 (requested by kleink in ticket #1634)

Fix == vs = typo from rev. 1.13 in __va_copy. PR#24846

diffstat:

 sys/arch/vax/include/stdarg.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 7f636d3574f0 -r 8052535f65d2 sys/arch/vax/include/stdarg.h
--- a/sys/arch/vax/include/stdarg.h     Sun Mar 28 08:56:45 2004 +0000
+++ b/sys/arch/vax/include/stdarg.h     Sun Mar 28 09:01:51 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: stdarg.h,v 1.13 2000/07/01 06:38:53 matt Exp $ */
+/*     $NetBSD: stdarg.h,v 1.13.18.1 2004/03/28 09:01:51 jmc Exp $     */
 
 /*-
  * Copyright (c) 1991 The Regents of the University of California.
@@ -64,7 +64,7 @@
 
 #define va_end(ap)     
 
-#define __va_copy(dest, src)   ((dest) == (src))
+#define __va_copy(dest, src)   ((dest) = (src))
 #endif
 
 #if !defined(_ANSI_SOURCE) && \



Home | Main Index | Thread Index | Old Index