On Thu, Jan 28, 2010 at 07:18:15PM +0100, Daniel Näslund wrote:
> Index: subversion/libsvn_diff/parse-diff.c
> ===================================================================
> --- subversion/libsvn_diff/parse-diff.c (revision 904119)
> +++ subversion/libsvn_diff/parse-diff.c (arbetskopia)
> @@ -224,6 +224,9 @@
> svn_stream_t *original_text;
> svn_stream_t *modified_text;
> svn_linenum_t original_lines;
> + svn_linenum_t leading_context = 0;
> + svn_linenum_t trailing_context = 0;
> + svn_boolean_t changed_line_seen = FALSE;
> apr_pool_t *iterpool;
One more thing: We can't declare more variables after starting to
assign values to others. This breaks pre-C99 compilers.
I'll fix this locally.
Stefan
Received on 2010-01-28 19:43:29 CET