Author: stefan2
Date: Wed Jun 5 11:33:04 2013
New Revision: 1489817
URL: http://svn.apache.org/r1489817
Log:
On the fsfs-format7 branch: lose parameter introduced by a copy-n-pasto.
* subversion/include/private/svn_packed_data.h
(svn_packed__get_int): drop unused parameter
* subversion/libsvn_subr/packed_data.c
(svn_packed__get_int): update signature
Modified:
subversion/branches/fsfs-format7/subversion/include/private/svn_packed_data.h
subversion/branches/fsfs-format7/subversion/libsvn_subr/packed_data.c
Modified:
subversion/branches/fsfs-format7/subversion/include/private/svn_packed_data.h
URL:
http://svn.apache.org/viewvc/subversion/branches/fsfs-format7/subversion/include/private/svn_packed_data.h?rev=1489817&r1=1489816&r2=1489817&view=diff
==============================================================================
---
subversion/branches/fsfs-format7/subversion/include/private/svn_packed_data.h
(original)
+++
subversion/branches/fsfs-format7/subversion/include/private/svn_packed_data.h
Wed Jun 5 11:33:04 2013
@@ -247,8 +247,7 @@ svn_packed__get_uint(svn_packed__int_str
* reading beyond the end of the stream.
*/
apr_int64_t
-svn_packed__get_int(svn_packed__int_stream_t *stream,
- apr_int64_t value);
+svn_packed__get_int(svn_packed__int_stream_t *stream);
/* Return the next byte sequence from STREAM and set *LEN to the length
* of that sequence. Sets *LEN to 0 when reading beyond the end of the
Modified: subversion/branches/fsfs-format7/subversion/libsvn_subr/packed_data.c
URL:
http://svn.apache.org/viewvc/subversion/branches/fsfs-format7/subversion/libsvn_subr/packed_data.c?rev=1489817&r1=1489816&r2=1489817&view=diff
==============================================================================
--- subversion/branches/fsfs-format7/subversion/libsvn_subr/packed_data.c
(original)
+++ subversion/branches/fsfs-format7/subversion/libsvn_subr/packed_data.c Wed
Jun 5 11:33:04 2013
@@ -705,8 +705,7 @@ svn_packed__get_uint(svn_packed__int_str
}
apr_int64_t
-svn_packed__get_int(svn_packed__int_stream_t *stream,
- apr_int64_t value)
+svn_packed__get_int(svn_packed__int_stream_t *stream)
{
return (apr_int64_t)svn_packed__get_uint(stream);
}