Don't bother putting new members at the end of a private struct.
* subversion/libsvn_subr/stream.c
(svn_stream_t): Put span_fn in its logical place instead of at
the end of the struct which users of the streams API don't have
access to anyway.
git-svn-id: https://svn.apache.org/repos/asf/subversion/branches/patch-from-stream@1925693 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/subversion/libsvn_subr/stream.c b/subversion/libsvn_subr/stream.c
index 0fe034f..397de41 100644
--- a/subversion/libsvn_subr/stream.c
+++ b/subversion/libsvn_subr/stream.c
@@ -60,10 +60,10 @@
svn_close_fn_t close_fn;
svn_stream_mark_fn_t mark_fn;
svn_stream_seek_fn_t seek_fn;
+ svn_stream_span_fn_t span_fn;
svn_stream_data_available_fn_t data_available_fn;
svn_stream_readline_fn_t readline_fn;
apr_file_t *file; /* Maybe NULL */
- svn_stream_span_fn_t span_fn;
};