diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-07-22 17:33:02 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-07-22 17:33:02 +0000 |
commit | a92993228f855a1cda2dae58b7706788c62b7ae1 (patch) | |
tree | 0e0af37e196ec82d1d12a03b27f9848847d62453 /tmux.h | |
parent | 6a979016919fc0b494a6f02176fa7ea1df93ad42 (diff) | |
download | rtmux-a92993228f855a1cda2dae58b7706788c62b7ae1.tar.gz rtmux-a92993228f855a1cda2dae58b7706788c62b7ae1.tar.bz2 rtmux-a92993228f855a1cda2dae58b7706788c62b7ae1.zip |
Change GRID_DEBUG to use log_debug2 since log_debug3 was removed.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.378 2009-07-22 17:31:20 tcunha Exp $ */ +/* $Id: tmux.h,v 1.379 2009-07-22 17:33:02 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -394,7 +394,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(...) |