[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: svn commit: r34131 - in trunk/subversion: include/private libsvn_fs_base libsvn_fs_fs

From: Greg Stein <gstein_at_gmail.com>
Date: Tue, 11 Nov 2008 15:43:42 -0800

Ugh. One change that rippled into TWO build breaks. First the missing
pool argument, and now whacked format codes.

(seems that I should work on getting the gcc warnings fixes patch in soon...)

On 11/11/08, Julian Foad <julianfoad_at_btopenworld.com> wrote:
> On Mon, 2008-11-10 at 09:00 -0800, rhuijben_at_tigris.org wrote:
>> Author: rhuijben
>> Date: Mon Nov 10 09:00:10 2008
>> New Revision: 34131
>>
>> Modified: trunk/subversion/include/private/svn_fs_util.h
>
>> svn_error_createf
>> \
>> (SVN_ERR_FS_ALREADY_EXISTS, 0,
>> \
>> _("File already exists: filesystem '%s', transaction '%s', path
>> '%s'"), \
>> - root->fs->path, root->txn, path_str)
>> \
>> + svn_path_local_style(root->fs->path), root->txn, path_str)
>> \
>> :
>> \
>> svn_error_createf
>> \
>> (SVN_ERR_FS_ALREADY_EXISTS, 0,
>> \
>> _("File already exists: filesystem '%s', revision %ld, path
>> '%s'"), \
>> - root->fs->path, root->rev, path_str)
>> \
>> + svn_path_local_style(root->fs->path), root->fs->path, root->rev,
>> \
>> + path_str)
>> \
>
> subversion/libsvn_fs_fs/tree.c: In function 'fs_make_dir':
> subversion/libsvn_fs_fs/tree.c:1855: format '%ld' expects type 'long int',
> but argument 5 has type 'char *'
> subversion/libsvn_fs_fs/tree.c:1855: format '%s' expects type 'char *', but
> argument 6 has type 'svn_revnum_t'
> subversion/libsvn_fs_fs/tree.c:1855: format '%ld' expects type 'long int',
> but argument 5 has type 'char *'
> subversion/libsvn_fs_fs/tree.c:1855: format '%s' expects type 'char *', but
> argument 6 has type 'svn_revnum_t'
> subversion/libsvn_fs_fs/tree.c:1855: too many arguments for format
> subversion/libsvn_fs_fs/tree.c: In function 'fs_make_file':
> subversion/libsvn_fs_fs/tree.c:2197: format '%ld' expects type 'long int',
> but argument 5 has type 'char *'
> subversion/libsvn_fs_fs/tree.c:2197: format '%s' expects type 'char *', but
> argument 6 has type 'svn_revnum_t'
> subversion/libsvn_fs_fs/tree.c:2197: format '%ld' expects type 'long int',
> but argument 5 has type 'char *'
> subversion/libsvn_fs_fs/tree.c:2197: format '%s' expects type 'char *', but
> argument 6 has type 'svn_revnum_t'
> subversion/libsvn_fs_fs/tree.c:2197: too many arguments for format
> --
> subversion/libsvn_fs_base/tree.c: In function 'txn_body_make_dir':
> subversion/libsvn_fs_base/tree.c:2898: format '%ld' expects type 'long int',
> but argument 5 has type 'char *'
> subversion/libsvn_fs_base/tree.c:2898: format '%s' expects type 'char *',
> but argument 6 has type 'svn_revnum_t'
> subversion/libsvn_fs_base/tree.c:2898: format '%ld' expects type 'long int',
> but argument 5 has type 'char *'
> subversion/libsvn_fs_base/tree.c:2898: format '%s' expects type 'char *',
> but argument 6 has type 'svn_revnum_t'
> subversion/libsvn_fs_base/tree.c:2898: too many arguments for format
> subversion/libsvn_fs_base/tree.c: In function 'txn_body_make_file':
> subversion/libsvn_fs_base/tree.c:3344: format '%ld' expects type 'long int',
> but argument 5 has type 'char *'
> subversion/libsvn_fs_base/tree.c:3344: format '%s' expects type 'char *',
> but argument 6 has type 'svn_revnum_t'
> subversion/libsvn_fs_base/tree.c:3344: format '%ld' expects type 'long int',
> but argument 5 has type 'char *'
> subversion/libsvn_fs_base/tree.c:3344: format '%s' expects type 'char *',
> but argument 6 has type 'svn_revnum_t'
> subversion/libsvn_fs_base/tree.c:3344: too many arguments for format
>
> Oops!
>
> - Julian
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe_at_subversion.tigris.org
> For additional commands, e-mail: dev-help_at_subversion.tigris.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: dev-help_at_subversion.tigris.org
Received on 2008-11-12 00:43:58 CET

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.