GNOME Bugzilla – Bug 579611
GLib.set_print_handler and GLib.set_printerr_handler bindings are incorrect
Last modified: 2009-05-14 18:27:33 UTC
E.g. if you compile this ---- static void print_handler (string text) { stdout.puts (text); } static int main (string[] args) { set_print_handler(print_handler); return 0; } ----- the output contains a statement like this g_set_print_handler (_print_handler_gprint_func, NULL); The NULL should obviously not be there
Works here. Maybe a temporary bug while moving from static delegates to [CCode (has_target = false)]?
*** This bug has been marked as a duplicate of 580667 ***