2005-07-25 Matthias Clasen <mclasen@redhat.com>
authormatthiasc <matthiasc@e2bd861d-eb25-0410-b326-f6ed22b6b98c>
Mon, 25 Jul 2005 19:43:07 +0000 (19:43 +0000)
committermatthiasc <matthiasc@e2bd861d-eb25-0410-b326-f6ed22b6b98c>
Mon, 25 Jul 2005 19:43:07 +0000 (19:43 +0000)
* test/window-listener-test.c: Fix a printf
format error.  (#169453)

git-svn-id: http://svn.gnome.org/svn/at-spi/trunk@761 e2bd861d-eb25-0410-b326-f6ed22b6b98c

ChangeLog
test/window-listener-test.c

index 2badab7..90d2367 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-07-25  Matthias Clasen  <mclasen@redhat.com>
+
+       * test/window-listener-test.c: Fix a printf
+       format error.  (#169453)
+
 2005-07-15  Bill Haneman <bill.haneman@sun.com>
 
        * tests/test-simple.c: 
index 6acd28c..cbd2410 100644 (file)
@@ -79,7 +79,7 @@ report_window_event (const AccessibleEvent *event, void *user_data)
   char *t, *s = Accessible_getName (event->source);
   t = AccessibleWindowEvent_getTitleString (event);
   if (t == NULL) t = "";
-  fprintf (stderr, "%s %s\n", event->type, s, t);
+  fprintf (stderr, "%s %s %s\n", event->type, s, t);
   SPI_freeString (s);
   SPI_freeString (t);
 }