From 506b9ebf8319f0d648cd0b33d4be0e47dbf96b26 Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Mon, 26 Oct 2020 08:51:03 -0500 Subject: Fix missing number of args in line 50 --- P2/lib/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/P2/lib/utils.c b/P2/lib/utils.c index 4d815a0..f6eb522 100644 --- a/P2/lib/utils.c +++ b/P2/lib/utils.c @@ -44,7 +44,7 @@ void sendChunkData(char *inputFile, int nMappers) { else cut off before that word and put back file */ // TODO! help - msgsnd(msgid, &message, mapperID); + msgsnd(msgid, &message, mapperID, 0); } for (long i = 1; i < nMappers; i++) { -- cgit v1.2.3