Module Name: src
Committed By: dholland
Date: Sun Feb 14 18:07:49 UTC 2016
Modified Files:
src/sys/arch/powerpc/oea: pmap.c
Log Message:
Add missing va_end; PR 50795 from David Binderman.
To generate a diff of this commit:
cvs rdiff -u -r1.92 -r1.93 src/sys/arch/powerpc/oea/pmap.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/powerpc/oea/pmap.c
diff -u src/sys/arch/powerpc/oea/pmap.c:1.92 src/sys/arch/powerpc/oea/pmap.c:1.93
--- src/sys/arch/powerpc/oea/pmap.c:1.92 Sun Aug 10 17:49:04 2014
+++ src/sys/arch/powerpc/oea/pmap.c Sun Feb 14 18:07:49 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: pmap.c,v 1.92 2014/08/10 17:49:04 joerg Exp $ */
+/* $NetBSD: pmap.c,v 1.93 2016/02/14 18:07:49 dholland Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
* All rights reserved.
@@ -63,7 +63,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.92 2014/08/10 17:49:04 joerg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.93 2016/02/14 18:07:49 dholland Exp $");
#define PMAP_NOOPNAMES
@@ -3133,6 +3133,7 @@ pmap_setup_segment0_map(int use_large_pa
(void)pmap_pte_insert(ptegidx, &pte);
}
}
+ va_end(ap);
TLBSYNC();
SYNC();