Module Name: src Committed By: uwe Date: Sat Oct 5 18:07:58 UTC 2019
Modified Files: src/lib/libc/db/db: db.c Log Message: __dberr: tweak signature to make gcc8 -Wbad-function-cast happy about casts in __dbpanic. Admittedly this is a bit too "cute". To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 src/lib/libc/db/db/db.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/lib/libc/db/db/db.c diff -u src/lib/libc/db/db/db.c:1.19 src/lib/libc/db/db/db.c:1.20 --- src/lib/libc/db/db/db.c:1.19 Sat Oct 5 18:01:52 2019 +++ src/lib/libc/db/db/db.c Sat Oct 5 18:07:58 2019 @@ -1,4 +1,4 @@ -/* $NetBSD: db.c,v 1.19 2019/10/05 18:01:52 uwe Exp $ */ +/* $NetBSD: db.c,v 1.20 2019/10/05 18:07:58 uwe Exp $ */ /*- * Copyright (c) 1991, 1993 @@ -34,7 +34,7 @@ #endif #include <sys/cdefs.h> -__RCSID("$NetBSD: db.c,v 1.19 2019/10/05 18:01:52 uwe Exp $"); +__RCSID("$NetBSD: db.c,v 1.20 2019/10/05 18:07:58 uwe Exp $"); #include "namespace.h" #include <sys/types.h> @@ -45,7 +45,7 @@ __RCSID("$NetBSD: db.c,v 1.19 2019/10/05 #include <stdio.h> #include <db.h> -static int __dberr(void); +static int __dberr(const DB *, ...); #ifdef __weak_alias __weak_alias(dbopen,_dbopen) @@ -82,7 +82,7 @@ dbopen(const char *fname, int flags, mod } static int -__dberr(void) +__dberr(const DB *dbp, ...) { return (RET_ERROR); }