From: David Dykstra Date: Wed, 13 Feb 2002 18:30:27 +0000 (+0000) Subject: Reversing the order of maybe_emit_filelist_progress() and X-Git-Tag: v2.5.3pre1~25 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d27cbec598136ff8ff767ebbfb5d9d39e0b7c03e;p=thirdparty%2Frsync.git Reversing the order of maybe_emit_filelist_progress() and emit_filelist_progress() makes the native compilers on systems including Solaris and Irix happier. --- diff --git a/flist.c b/flist.c index cdf0922a..151ae876 100644 --- a/flist.c +++ b/flist.c @@ -84,16 +84,16 @@ static void start_filelist_progress(char *kind) } -static void maybe_emit_filelist_progress(const struct file_list *flist) +static void emit_filelist_progress(const struct file_list *flist) { - if (do_progress && show_filelist_p() && ((flist->count % 100) == 0)) - emit_filelist_progress(flist); + rprintf(FINFO, " %d files...\r", flist->count); } -static void emit_filelist_progress(const struct file_list *flist) +static void maybe_emit_filelist_progress(const struct file_list *flist) { - rprintf(FINFO, " %d files...\r", flist->count); + if (do_progress && show_filelist_p() && ((flist->count % 100) == 0)) + emit_filelist_progress(flist); }