From 8bef3adc8348b979f54e6c25ddc0c2f15e1821d1 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sun, 23 Nov 2008 19:38:12 +0000 Subject: Fix build on sparc. --- tmux.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index eb93f5ee..9d178a26 100644 --- a/tmux.h +++ b/tmux.h @@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.198 2008-11-17 18:56:36 nicm Exp $ */ +/* $Id: tmux.h,v 1.199 2008-11-23 19:38:12 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -407,8 +407,12 @@ struct msg_resize_data { #define MODE_MOUSE 0x10 /* Grid output. */ +#ifdef DEBUG #define GRID_DEBUG(gd, fmt, ...) log_debug3("%s: (sx=%u, sy=%u, hsize=%u) " \ fmt, __func__, (gd)->sx, (gd)->sy, (gd)->hsize, ## __VA_ARGS__) +#else +#define GRID_DEBUG(...) +#endif /* Grid attributes. */ #define GRID_ATTR_BRIGHT 0x1 -- cgit