From: Eric Bollengier Date: Sat, 3 Dec 2011 17:04:54 +0000 (+0100) Subject: Fix compilation warning on FreeBSD X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=5a4547ff0f285d588e9a63ebcde1fd666ce83237;p=bacula%2Fbacula Fix compilation warning on FreeBSD --- 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,