> Author: lundblad
> Date: Wed May 12 00:43:39 2004
> New Revision: 9691
>
> Modified:
[ ... ]
> trunk/subversion/libsvn_client/ra.c
[ ... ]
> Log:
> Eliminate all uses of SVN_REVNUM_T_FMT in every C source file that used
> it.
> Replace every occurence with 'ld' and concatenate string constants
> appropriately.
>
> Approved by brane.
>
[ ...
]
==============================================================================
> --- trunk/subversion/libsvn_client/ra.c (original)
> +++ trunk/subversion/libsvn_client/ra.c Wed May 12 00:43:39 2004
> @@ -430,7 +430,7 @@
> else
> return svn_error_createf (SVN_ERR_CLIENT_UNRELATED_RESOURCES,
> NULL,
> "Missing changed-path information for "
> - "'%s' in revision %" SVN_REVNUM_T_FMT,
> + "'%s' in revision %ld",
> path, revision);
> }
>
> @@ -565,7 +565,7 @@
> if (lrb.kind == svn_node_none)
> return svn_error_createf
> (SVN_ERR_FS_NOT_FOUND, NULL,
> - "path '%s' doesn't exist in revision %" SVN_REVNUM_T_FMT,
> + "path '%s' doesn't exist in revision %ld",
> path, peg_revnum);
>
> /* Populate most of our log receiver baton structure. */
> @@ -625,18 +625,18 @@
> if (! lrb.start_path)
> return svn_error_createf
> (APR_EGENERAL, NULL,
> - "Unable to find repository location for '%s' in revision %"
> - SVN_REVNUM_T_FMT, path, start_revnum);
> + "Unable to find repository location for '%s' in revision %ld",
> + path, start_revnum);
> if (! lrb.end_path)
> return svn_error_createf
> (APR_EGENERAL, NULL,
> - "Unable to find repository location for '%s' in revision %"
> - SVN_REVNUM_T_FMT, path, end_revnum);
> + "Unable to find repository location for '%s' in revision %ld",
> + path, end_revnum);
> if (! lrb.peg_path)
> return svn_error_createf
> (APR_EGENERAL, NULL,
> - "Unable to find repository location for '%s' in revision %"
> - SVN_REVNUM_T_FMT, path, peg_revnum);
> + "Unable to find repository location for '%s' in revision %ld",
> + peg_revnum);
You removed the argument 'path' here. If you use the
--enable-maintainer-mode configure flag and run 'make >/dev/null' you see
all warnings pass by. Normally there are none :-)
bye,
Erik.
--
"Sie haben neue Mails!" - Die GMX Toolbar informiert Sie beim Surfen!
Jetzt aktivieren unter http://www.gmx.net/info
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Wed May 12 18:20:39 2004