summaryrefslogtreecommitdiff
path: root/xresponse.c
diff options
context:
space:
mode:
authorross <ross@f5eea0f0-44ea-0310-b729-df5b855dafe5>2007-09-20 09:12:13 +0000
committerross <ross@f5eea0f0-44ea-0310-b729-df5b855dafe5>2007-09-20 09:12:13 +0000
commit3e562db835bd439a21e36e4add36b67899e3c09d (patch)
treee02db287a6b362cd5d9be73c286701c89773773f /xresponse.c
parent9818701f6e4f440800744cf368806f7a943538e9 (diff)
2007-09-20 Ross Burton <ross@openedhand.com>
* xresponse.c: Fix order of coordinates when outputting the monitor rectangle (thanks Mika Yrjölä)
Diffstat (limited to 'xresponse.c')
-rw-r--r--xresponse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xresponse.c b/xresponse.c
index 73e4a2f..c493249 100644
--- a/xresponse.c
+++ b/xresponse.c
@@ -417,8 +417,8 @@ main(int argc, char **argv)
if (verbose)
printf("Set monitor rect to %ix%i+%i+%i\n",
- InterestedDamageRect.x,InterestedDamageRect.y,
- InterestedDamageRect.width,InterestedDamageRect.height);
+ InterestedDamageRect.width,InterestedDamageRect.height,
+ InterestedDamageRect.x,InterestedDamageRect.y);
continue;
}