summaryrefslogtreecommitdiff
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
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ä)
-rw-r--r--ChangeLog6
-rw-r--r--xresponse.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index aa68970..a66dade 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-09-20 Ross Burton <ross@openedhand.com>
+
+ * xresponse.c:
+ Fix order of coordinates when outputting the monitor rectangle
+ (thanks Mika Yrjölä)
+
2007-01-02 Matthew Allum <mallum@openedhand.com>
* xresponse.doap:
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;
}