Skip to content

Commit

Permalink
#410 request window title before fork because Apple wills it so..
Browse files Browse the repository at this point in the history
  • Loading branch information
koekeishiya committed Feb 12, 2020
1 parent 5a51522 commit a48e2c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/event.c
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ void event_signal_transmit(void *context, enum event_type type)

struct signal_args args = {};
event_signal_populate_args(context, type, &args);
debug("%s: transmitting %s to %d subscribers\n", __FUNCTION__, event_type_str[type], signal_count);
debug("%s: transmitting %s to %d subscriber(s)\n", __FUNCTION__, event_type_str[type], signal_count);

if (fork() != 0) {
event_signal_destroy_args(type, &args);
Expand Down

0 comments on commit a48e2c9

Please sign in to comment.