From owner-svn-src-stable@FreeBSD.ORG Thu Aug 26 11:25:09 2010 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5E379106564A; Thu, 26 Aug 2010 11:25:09 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4D6B88FC22; Thu, 26 Aug 2010 11:25:09 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o7QBP9Ca041445; Thu, 26 Aug 2010 11:25:09 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o7QBP9vx041442; Thu, 26 Aug 2010 11:25:09 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <201008261125.o7QBP9vx041442@svn.freebsd.org> From: Konstantin Belousov Date: Thu, 26 Aug 2010 11:25:09 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r211840 - in stable/8/lib/libc: . stdlib X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Aug 2010 11:25:09 -0000 Author: kib Date: Thu Aug 26 11:25:09 2010 New Revision: 211840 URL: http://svn.freebsd.org/changeset/base/211840 Log: MFC r211704: Style. Modified: stable/8/lib/libc/Makefile stable/8/lib/libc/stdlib/atexit.c Directory Properties: stable/8/lib/libc/ (props changed) stable/8/lib/libc/locale/ (props changed) stable/8/lib/libc/stdtime/ (props changed) stable/8/lib/libc/sys/ (props changed) Modified: stable/8/lib/libc/Makefile ============================================================================== --- stable/8/lib/libc/Makefile Thu Aug 26 11:22:12 2010 (r211839) +++ stable/8/lib/libc/Makefile Thu Aug 26 11:25:09 2010 (r211840) @@ -118,7 +118,7 @@ libkern.${MACHINE_ARCH}:: ${KMSRCS} .if defined(KMSRCS) && !empty(KMSRCS) cp -p ${.ALLSRC} ${DESTDIR}/sys/libkern/${MACHINE_ARCH} .endif - + .include # Disable warnings in contributed sources. Modified: stable/8/lib/libc/stdlib/atexit.c ============================================================================== --- stable/8/lib/libc/stdlib/atexit.c Thu Aug 26 11:22:12 2010 (r211839) +++ stable/8/lib/libc/stdlib/atexit.c Thu Aug 26 11:25:09 2010 (r211840) @@ -119,7 +119,7 @@ atexit(void (*func)(void)) int error; fn.fn_type = ATEXIT_FN_STD; - fn.fn_ptr.std_func = func;; + fn.fn_ptr.std_func = func; fn.fn_arg = NULL; fn.fn_dso = NULL; @@ -138,7 +138,7 @@ __cxa_atexit(void (*func)(void *), void int error; fn.fn_type = ATEXIT_FN_CXA; - fn.fn_ptr.cxa_func = func;; + fn.fn_ptr.cxa_func = func; fn.fn_arg = arg; fn.fn_dso = dso;