Changes to introspection generation to remove DOCTYPE and XML
[platform/core/uifw/at-spi2-atk.git] / test / window-listener-test.c
index e99c5b3..cbd2410 100644 (file)
@@ -22,6 +22,7 @@
  */
 
 #include <stdlib.h>
+#include <stdio.h>
 #include <unistd.h>
 #include "../cspi/spi-private.h" /* A hack for now */
 
@@ -78,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);
 }