summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-07-22 18:06:58 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-07-22 18:06:58 +0000
commitbb4bab4c262f3b7b8bc2df8857b417a229c595e1 (patch)
treeefb6aedb7d40f759b1a95d7492eb16442231b641
parent2ec2837daa428def7116848a17355f3423bf038e (diff)
log_debug3 no longer exists, change the sole use in GRID_DEBUG to log_debug2.
-rw-r--r--tmux.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index bcf0f8a8..8b64ee36 100644
--- a/tmux.h
+++ b/tmux.h
@@ -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(...)