Module Name: src Committed By: christos Date: Sat Feb 9 01:16:40 UTC 2013
Modified Files: src/usr.sbin/powerd: powerd.c Log Message: CID/980002: missing va_end() To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 src/usr.sbin/powerd/powerd.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/usr.sbin/powerd/powerd.c diff -u src/usr.sbin/powerd/powerd.c:1.17 src/usr.sbin/powerd/powerd.c:1.18 --- src/usr.sbin/powerd/powerd.c:1.17 Wed Mar 14 22:02:24 2012 +++ src/usr.sbin/powerd/powerd.c Fri Feb 8 20:16:39 2013 @@ -1,4 +1,4 @@ -/* $NetBSD: powerd.c,v 1.17 2012/03/15 02:02:24 joerg Exp $ */ +/* $NetBSD: powerd.c,v 1.18 2013/02/09 01:16:39 christos Exp $ */ /* * Copyright (c) 2003 Wasabi Systems, Inc. @@ -371,4 +371,5 @@ powerd_log(int pri, const char *msg, ... "UNKNOWN" : prioritynames[i].c_name); vfprintf(stderr, msg, arglist); } + va_end(arglist); }