summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}