diff options
author | Matt Strapp <strap012@umn.edu> | 2020-10-28 18:08:39 -0500 |
---|---|---|
committer | Matt Strapp <strap012@umn.edu> | 2020-10-28 18:08:39 -0500 |
commit | 6731bbbe1252568ff32d5fb9c1f2767d65b39633 (patch) | |
tree | 1f8f4754c8ec161342cefe18350f2f017772a0c3 /P2/lib | |
parent | Add a close function (diff) | |
download | csci4061-6731bbbe1252568ff32d5fb9c1f2767d65b39633.tar csci4061-6731bbbe1252568ff32d5fb9c1f2767d65b39633.tar.gz csci4061-6731bbbe1252568ff32d5fb9c1f2767d65b39633.tar.bz2 csci4061-6731bbbe1252568ff32d5fb9c1f2767d65b39633.tar.lz csci4061-6731bbbe1252568ff32d5fb9c1f2767d65b39633.tar.xz csci4061-6731bbbe1252568ff32d5fb9c1f2767d65b39633.tar.zst csci4061-6731bbbe1252568ff32d5fb9c1f2767d65b39633.zip |
?
Diffstat (limited to 'P2/lib')
-rw-r--r-- | P2/lib/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/P2/lib/utils.c b/P2/lib/utils.c index 8c27f4c..82f7a70 100644 --- a/P2/lib/utils.c +++ b/P2/lib/utils.c @@ -46,7 +46,7 @@ void sendChunkData(char *inputFile, int nMappers) { // construct chunks of 1024 bytes memset(message.msgText, '\0', MSGSIZE); while(read(fd, message.msgText, chunkSize) != 0) { - printf("%s\n", message.msgText); + // printf("%s\n", message.msgText); /* Go to the end of the chunk, check if final character is a space if character is a space, do nothing else cut off before that word and put back file */ |