2005-08-26 Colin Walters <walters@verbum.org>

* tools/dbus-print-message.c (print_message): Flush stdout
	after printing a message, so that redirecting to a file, then
	hitting Ctrl-C works.
This commit is contained in:
Colin Walters 2005-08-26 15:41:31 +00:00
parent 18170dd986
commit b2d215da38
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2005-08-26 Colin Walters <walters@verbum.org>
* tools/dbus-print-message.c (print_message): Flush stdout
after printing a message, so that redirecting to a file, then
hitting Ctrl-C works.
2005-08-25 John (J5) Palmieri <johnp@redhat.com>
* python/dbus_bindings.pyx: Tracked down a major memleak and fixed it

View file

@ -189,6 +189,7 @@ print_message (DBusMessage *message, dbus_bool_t literal)
dbus_message_iter_init (message, &iter);
print_iter (&iter, literal, 1);
fflush (stdout);
}