From owner-svn-src-all@FreeBSD.ORG Thu Nov 29 12:45:45 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5B0773B1 for ; Thu, 29 Nov 2012 12:45:45 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-lb0-f182.google.com (mail-lb0-f182.google.com [209.85.217.182]) by mx1.freebsd.org (Postfix) with ESMTP id C2FE18FC13 for ; Thu, 29 Nov 2012 12:45:44 +0000 (UTC) Received: by mail-lb0-f182.google.com with SMTP id go10so11606904lbb.13 for ; Thu, 29 Nov 2012 04:45:43 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; bh=V7u83gyxNED4BE1u60bhHeogAN6F8OWS/EO/cjYTAzA=; b=jKdrnAZpb97+bpIypsn+Kff6SAO7zSO+4GJ5y0F5+Fe5stpC3PXMKN2kppnEdx3pJY aKpr3Xhqqsy3iaJgNOb+ilHaBbL0tF5qBjogWsoHY+LG9ZjHcx7USYmp5XSLEAP1EpWG 0QkAhcLEt3mezqi9idDAQ1YSUIsf9FBFJNK60= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type :x-gm-message-state; bh=V7u83gyxNED4BE1u60bhHeogAN6F8OWS/EO/cjYTAzA=; b=ar+nCHSFX//46/XxUnI6AzMt9NQgIFFQEOnwP9RGGm6qE3c0zEfx+H8b1N2YJObR03 RTrywik47ffFEPJSiIPj+l3cFdk2WnthA5q4MdiairFFrceboY7LQ2SZpFoZBDo4wmFH mNQxZHFbpNuJdWvZ11HzUurMhBe5GQo9g98Ld6xl4NSKpsl7p11VDSoo0MWXwQbcKKxE MFu1hk956ERVdu7Wm0Ah81wl/D7G/RFuIvcoqmW2DbZFK92mqnfy1hZyfBmS2HoAll5j Vm1IniPAcNfnTSmJ80qrimQcCWnBvM0LvVEma4gEAUIpzwtF8hsVVsk6JS7vp6RJmmyU pkVw== Received: by 10.152.105.33 with SMTP id gj1mr21566731lab.49.1354193143111; Thu, 29 Nov 2012 04:45:43 -0800 (PST) MIME-Version: 1.0 Sender: lists@eitanadler.com Received: by 10.112.154.168 with HTTP; Thu, 29 Nov 2012 04:45:12 -0800 (PST) In-Reply-To: <20121129120147.GE3013@kib.kiev.ua> References: <201211290516.qAT5GoT5098709@svn.freebsd.org> <20121129120147.GE3013@kib.kiev.ua> From: Eitan Adler Date: Thu, 29 Nov 2012 07:45:12 -0500 X-Google-Sender-Auth: iGMQ3Ff5eAbQZkdUkdlyLrkfo0w Message-ID: Subject: Re: svn commit: r243665 - head/sbin/dump To: Konstantin Belousov Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQmrJRwo1wTpR7RlgzYpihX1LQ4+Ye/u+h/t/zSbfG1EcEFl0J+1pIxibFLUrpChatDJ2rNJ Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Nov 2012 12:45:45 -0000 On 29 November 2012 07:01, Konstantin Belousov wrote: > On Thu, Nov 29, 2012 at 05:16:50AM +0000, Eitan Adler wrote: >> Author: eadler >> Date: Thu Nov 29 05:16:50 2012 >> New Revision: 243665 >> URL: http://svnweb.freebsd.org/changeset/base/243665 >> >> Log: >> Mark non-returning function as such >> >> PR: bin/172978 >> Approved by: cperciva >> MFC after: 3 days >> >> Modified: >> head/sbin/dump/dump.h >> >> Modified: head/sbin/dump/dump.h >> ============================================================================== >> --- head/sbin/dump/dump.h Thu Nov 29 03:48:39 2012 (r243664) >> +++ head/sbin/dump/dump.h Thu Nov 29 05:16:50 2012 (r243665) >> @@ -121,7 +121,7 @@ void trewind(void); >> void writerec(char *dp, int isspcl); >> >> void Exit(int status) __dead2; >> -void dumpabort(int signo); >> +void dumpabort(int signo) __dead2; >> void dump_getfstab(void); >> >> char *rawname(char *cp); > What is the goal of this change ? It fixes some static analyzer warnings. -- Eitan Adler Source, Ports, Doc committer Bugmeister, Ports Security teams