"loglevel" is declared as a global variable elsewhere, and gcc-3.3.3 complains
beacuse of this:
buffer_tree.h:199: warning: declaration of `loglevel' shadows a global declaration
Just call the thing "ll".
void btr_pushdown(struct btr_node *btrn);
void *btr_context(struct btr_node *btrn);
void btr_merge(struct btr_node *btrn, size_t dest_size);
-void btr_log_tree(struct btr_node *btrn, int loglevel);
+void btr_log_tree(struct btr_node *btrn, int ll);
void btr_pushdown_one(struct btr_node *btrn);
bool btr_inplace_ok(struct btr_node *btrn);
int btr_node_status(struct btr_node *btrn, size_t min_iqs,