Return-Path: X-Original-To: apmail-subversion-commits-archive@minotaur.apache.org Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 449FC9D28 for ; Mon, 5 Mar 2012 20:14:27 +0000 (UTC) Received: (qmail 14315 invoked by uid 500); 5 Mar 2012 20:14:27 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 14291 invoked by uid 500); 5 Mar 2012 20:14:27 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 14284 invoked by uid 99); 5 Mar 2012 20:14:27 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Mar 2012 20:14:27 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Mar 2012 20:14:26 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 405192388860; Mon, 5 Mar 2012 20:14:06 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1297211 - /subversion/trunk/subversion/libsvn_fs_fs/fs_fs.c Date: Mon, 05 Mar 2012 20:14:06 -0000 To: commits@subversion.apache.org From: danielsh@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120305201406.405192388860@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: danielsh Date: Mon Mar 5 20:14:05 2012 New Revision: 1297211 URL: http://svn.apache.org/viewvc?rev=1297211&view=rev Log: Follow-up to r1296610: * subversion/libsvn_fs_fs/fs_fs.c (increment_revprop_generation): Use the correct printf format. Modified: subversion/trunk/subversion/libsvn_fs_fs/fs_fs.c Modified: subversion/trunk/subversion/libsvn_fs_fs/fs_fs.c URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_fs_fs/fs_fs.c?rev=1297211&r1=1297210&r2=1297211&view=diff ============================================================================== --- subversion/trunk/subversion/libsvn_fs_fs/fs_fs.c (original) +++ subversion/trunk/subversion/libsvn_fs_fs/fs_fs.c Mon Mar 5 20:14:05 2012 @@ -2795,7 +2795,8 @@ increment_revprop_generation(svn_fs_t *f /* Increment the key and add a trailing \n to the string so the txn-current file has a newline in it. */ ++ffd->revprop_generation; - generation = svn_string_createf(pool, "%ld\n", ffd->revprop_generation); + generation = svn_string_createf(pool, "%" APR_INT64_T_FMT "\n", + ffd->revprop_generation); SVN_ERR(svn_io_write_unique(&tmp_filename, svn_dirent_dirname(path, pool),