diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-07-22 18:06:59 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-07-22 18:06:59 +0000 |
commit | 71c4db2be6eca0002099526362eed4197c1acb09 (patch) | |
tree | 661639517a20fb6b975078fdba0d25f16425bdb9 /usr.bin | |
parent | c7c088868af85873299ff86f63181753879f5d40 (diff) |
log_debug3 no longer exists, change the sole use in GRID_DEBUG to log_debug2.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/tmux/tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index d242f8d09e4..8e4f873a378 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.47 2009/07/22 18:02:23 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.48 2009/07/22 18:06:58 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -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(...) |