Module Name: src Committed By: joerg Date: Thu May 10 15:36:09 UTC 2012
Modified Files: src/usr.sbin/makemandb: apropos-utils.c Log Message: KNF To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/usr.sbin/makemandb/apropos-utils.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/makemandb/apropos-utils.c diff -u src/usr.sbin/makemandb/apropos-utils.c:1.5 src/usr.sbin/makemandb/apropos-utils.c:1.6 --- src/usr.sbin/makemandb/apropos-utils.c:1.5 Mon May 7 11:18:16 2012 +++ src/usr.sbin/makemandb/apropos-utils.c Thu May 10 15:36:09 2012 @@ -1,4 +1,4 @@ -/* $NetBSD: apropos-utils.c,v 1.5 2012/05/07 11:18:16 wiz Exp $ */ +/* $NetBSD: apropos-utils.c,v 1.6 2012/05/10 15:36:09 joerg Exp $ */ /*- * Copyright (c) 2011 Abhinav Upadhyay <er.abhinav.upadh...@gmail.com> * All rights reserved. @@ -31,7 +31,7 @@ */ #include <sys/cdefs.h> -__RCSID("$NetBSD: apropos-utils.c,v 1.5 2012/05/07 11:18:16 wiz Exp $"); +__RCSID("$NetBSD: apropos-utils.c,v 1.6 2012/05/10 15:36:09 joerg Exp $"); #include <sys/stat.h> @@ -756,7 +756,8 @@ callback_pager(void *data, const char *s * For this purpose it first calls it's own callback function callback_pager * which then delegates the call to the user supplied callback. */ -int run_query_pager(sqlite3 *db, query_args *args) +int +run_query_pager(sqlite3 *db, query_args *args) { struct orig_callback_data orig_data; orig_data.callback = args->callback;