From 5a4547ff0f285d588e9a63ebcde1fd666ce83237 Mon Sep 17 00:00:00 2001 From: Eric Bollengier Date: Sat, 3 Dec 2011 18:04:54 +0100 Subject: [PATCH] Fix compilation warning on FreeBSD --- bacula/src/lib/tree.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bacula/src/lib/tree.c b/bacula/src/lib/tree.c index fda5b0a72c..4d6cac1d3c 100644 --- a/bacula/src/lib/tree.c +++ b/bacula/src/lib/tree.c @@ -36,9 +36,9 @@ #include "bacula.h" #include "findlib/find.h" -#define PAGE_SIZE 4096 +#define B_PAGE_SIZE 4096 #define MAX_PAGES 2400 -#define MAX_BUF_SIZE (MAX_PAGES * PAGE_SIZE) /* approx 10MB */ +#define MAX_BUF_SIZE (MAX_PAGES * B_PAGE_SIZE) /* approx 10MB */ /* Forward referenced subroutines */ static TREE_NODE *search_and_insert_tree_node(char *fname, int type, -- 2.39.2