From b9fe3dbcb7b6829ed19abd631f1b725538d4822e Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Tue, 3 Nov 2020 11:01:07 -0600 Subject: fix made problem --- P2/lib/utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'P2/lib') diff --git a/P2/lib/utils.c b/P2/lib/utils.c index 5c2a738..9a12ff0 100644 --- a/P2/lib/utils.c +++ b/P2/lib/utils.c @@ -23,13 +23,13 @@ char *getChunkData(int mapperID) { int mid = openQueue("map"); // printf("%d\n", mapperID); msgrcv(mid, &message, MSGSIZE, mapperID, 0); - printf("\n%s\n", message.msgText); + // printf("\n%s\n", message.msgText); // printf("%d\n", strncmp("END", message.msgText, 3)); if (strncmp("END", message.msgText, 3) == 0) return NULL; char* value = message.msgText; // printf("%s\n", message.msgText); - printf("%s\n", value); + // printf("%s\n", value); return value; //return &(message.msgText); } -- cgit v1.2.3