From 272ad1ed6c18aad0a22ab2b18904610774256737 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Mon, 27 Aug 2007 08:12:23 +0000 Subject: [PATCH] Tweak logging. --- input.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/input.c b/input.c index 663ef2a3..4ae900ac 100644 --- a/input.c +++ b/input.c @@ -1,4 +1,4 @@ -/* $Id: input.c,v 1.1.1.1 2007-07-09 19:03:45 nicm Exp $ */ +/* $Id: input.c,v 1.2 2007-08-27 08:12:23 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -479,7 +479,7 @@ input_control_sequence( log_debug( "sequence: %c (%hhu) [%c] [cx %u, cy %u, sx %u, sy %u]: %u", code, - code, private, s->cx + 1, s->cy + 1, s->sx + 1, s->sy + 1, argc); + code, private, s->cx, s->cy, s->sx, s->sy, argc); for (i = 0; i < argc; i++) log_debug("\targument %u: %u", i, argv[i]);