log_debug3 no longer exists, change the sole use in GRID_DEBUG to log_debug2.

pull/1/head
Nicholas Marriott 2009-07-22 18:06:58 +00:00
parent 2ec2837daa
commit bb4bab4c26
1 changed files with 1 additions and 1 deletions

2
tmux.h
View File

@ -376,7 +376,7 @@ struct mode_key_data {
#if defined(DEBUG) && \
((defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || \
(defined(__GNUC__) && __GNUC__ >= 3))
#define GRID_DEBUG(gd, fmt, ...) log_debug3("%s: (sx=%u, sy=%u, hsize=%u) " \
#define GRID_DEBUG(gd, fmt, ...) log_debug2("%s: (sx=%u, sy=%u, hsize=%u) " \
fmt, __func__, (gd)->sx, (gd)->sy, (gd)->hsize, ## __VA_ARGS__)
#else
#define GRID_DEBUG(...)