From: Eric Bollengier Date: Sat, 3 Dec 2011 17:04:54 +0000 (+0100) Subject: Fix compilation warning on FreeBSD X-Git-Tag: Release-7.0.0~412 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=d1db80de39c9b0a6210ce466d8a4ec6c89e8d5ed;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,