From owner-svn-src-head@FreeBSD.ORG Tue Aug 6 10:35:06 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 265B377F; Tue, 6 Aug 2013 10:35:06 +0000 (UTC) (envelope-from ae@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 13C3225DE; Tue, 6 Aug 2013 10:35:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r76AZ53f053797; Tue, 6 Aug 2013 10:35:05 GMT (envelope-from ae@svn.freebsd.org) Received: (from ae@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r76AZ5Z1053796; Tue, 6 Aug 2013 10:35:05 GMT (envelope-from ae@svn.freebsd.org) Message-Id: <201308061035.r76AZ5Z1053796@svn.freebsd.org> From: "Andrey V. Elsukov" Date: Tue, 6 Aug 2013 10:35:05 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r253986 - head/tools/tools/bootparttest X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Aug 2013 10:35:06 -0000 Author: ae Date: Tue Aug 6 10:35:05 2013 New Revision: 253986 URL: http://svnweb.freebsd.org/changeset/base/253986 Log: Fix formatting warning. MFC after: 1 week Modified: head/tools/tools/bootparttest/bootparttest.c Modified: head/tools/tools/bootparttest/bootparttest.c ============================================================================== --- head/tools/tools/bootparttest/bootparttest.c Tue Aug 6 10:03:44 2013 (r253985) +++ head/tools/tools/bootparttest/bootparttest.c Tue Aug 6 10:35:05 2013 (r253986) @@ -54,7 +54,7 @@ diskread(void *arg, void *buf, size_t bl struct disk *dp; dp = (struct disk *)arg; - printf("%s: read %d blocks from the offset %jd [+%jd]\n", dp->name, + printf("%s: read %lu blocks from the offset %jd [+%jd]\n", dp->name, blocks, offset, dp->offset); if (offset >= dp->mediasize / dp->sectorsize) return (-1);