summary refs log tree commit diff
path: root/event.c
diff options
context:
space:
mode:
Diffstat (limited to 'event.c')
-rw-r--r--event.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/event.c b/event.c
index e9864ff..9f8c35e 100644
--- a/event.c
+++ b/event.c
@@ -106,13 +106,15 @@ static void sigint(int sig) {
 	exit(EX_OK);
 }
 
-void eventLoop(int ui, int irc) {
+void eventLoop(void) {
 	signal(SIGINT, sigint);
 	signal(SIGCHLD, sigchld);
 
+	int irc = ircConnect();
+
 	struct pollfd fds[3] = {
 		{ irc, POLLIN, 0 },
-		{ ui, POLLIN, 0 },
+		{ STDIN_FILENO, POLLIN, 0 },
 		{ -1, POLLIN, 0 },
 	};
 	for (;;) {
src/bin/day06.rs?id=037c2a4d3ce3db556b5acb971a8a234789d6a179&follow=1'>Day 6, part 2June McEnroe 2020-11-22Day 6June McEnroe 2020-11-22Day 5, part 2June McEnroe 2020-11-22Day 5June McEnroe 2020-11-22Day 4, part 2June McEnroe That ugly sort map though. 2020-11-22Day 4June McEnroe 2020-11-22Day 3, part 2June McEnroe I am super surprised that worked on the first try. 2020-11-22Day 3, clean upJune McEnroe 2020-11-22Day 3June McEnroe This is fucking awful and I'm angry. 2020-11-22Day 2, part 2June McEnroe 2020-11-22Day 2June McEnroe 2020-11-22Day 1, part 2June McEnroe 2020-11-22Day 1June McEnroe 2020-11-22Move to 2016 directoryJune McEnroe