From 8c48382049712e11691ca99a4c7583510abf1a32 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Thu, 20 Jan 2005 23:57:35 +0000 Subject: [PATCH] Don't mention when the file-list is first allocated, just when it expands. --- flist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flist.c b/flist.c index 0e787ebe..7e655820 100644 --- a/flist.c +++ b/flist.c @@ -317,7 +317,7 @@ void flist_expand(struct file_list *flist) new_ptr = realloc_array(flist->files, struct file_struct *, flist->malloced); - if (verbose >= 2) { + if (verbose >= 2 && flist->malloced != FLIST_START) { rprintf(FINFO, "[%s] expand file_list to %.0f bytes, did%s move\n", who_am_i(), (double)sizeof flist->files[0] * flist->malloced, -- 2.34.1