From 869431269586507d77909cbbe1f2640c40bb8a40 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Fri, 25 Jan 2002 10:06:36 +0000 Subject: [PATCH] Add dummy show_flist_stats(). --- flist.c | 6 ++++++ main.c | 1 + 2 files changed, 7 insertions(+) diff --git a/flist.c b/flist.c index 7f57d377..9c5f7372 100644 --- a/flist.c +++ b/flist.c @@ -95,6 +95,12 @@ static void finish_build_progress(const struct file_list *flist) } +void show_flist_stats(void) +{ + /* Nothing yet */ +} + + static struct string_area *string_area_new(int size) { struct string_area *a; diff --git a/main.c b/main.c index fd302112..4052ea98 100644 --- a/main.c +++ b/main.c @@ -60,6 +60,7 @@ static void report(int f) if (do_stats) { /* These come out from every process */ show_malloc_stats(); + show_flist_stats(); } if (am_daemon) { -- 2.34.1