From owner-cvs-src-old@FreeBSD.ORG Fri Jun 11 23:38:44 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7A6A9106567C for ; Fri, 11 Jun 2010 23:38:44 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (unknown [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4F58D8FC0C for ; Fri, 11 Jun 2010 23:38:44 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o5BNcieH093639 for ; Fri, 11 Jun 2010 23:38:44 GMT (envelope-from jkim@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o5BNciCC093638 for cvs-src-old@freebsd.org; Fri, 11 Jun 2010 23:38:44 GMT (envelope-from jkim@repoman.freebsd.org) Message-Id: <201006112338.o5BNciCC093638@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jkim@repoman.freebsd.org using -f From: Jung-uk Kim Date: Fri, 11 Jun 2010 23:38:25 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys file.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Jun 2010 23:38:44 -0000 jkim 2010-06-11 23:38:25 UTC FreeBSD src repository Modified files: sys/sys file.h Log: SVN rev 209082 on 2010-06-11 23:38:25Z by jkim Apply band-aid around function-like macro fdrop() without turning it into a real (inline) function or applying void casting for all its consumers. In most of places, the "return value" is not checked nor assigned, which causes too many warnings for some smart compilers, i.e., clang. Found by: clang Revision Changes Path 1.84 +8 -1 src/sys/sys/file.h