diff options
author | Matt Strapp <strap012@umn.edu> | 2020-10-05 09:44:12 -0500 |
---|---|---|
committer | Matt Strapp <strap012@umn.edu> | 2020-10-05 09:44:12 -0500 |
commit | f1b4256e20dcbf39dc33c124969309da2e1b6961 (patch) | |
tree | 4bfd2f3b082bf13d533de4fbd6a964c779a3699b /P1 | |
parent | Fix spacing & add a comment (diff) | |
download | csci4061-f1b4256e20dcbf39dc33c124969309da2e1b6961.tar csci4061-f1b4256e20dcbf39dc33c124969309da2e1b6961.tar.gz csci4061-f1b4256e20dcbf39dc33c124969309da2e1b6961.tar.bz2 csci4061-f1b4256e20dcbf39dc33c124969309da2e1b6961.tar.lz csci4061-f1b4256e20dcbf39dc33c124969309da2e1b6961.tar.xz csci4061-f1b4256e20dcbf39dc33c124969309da2e1b6961.tar.zst csci4061-f1b4256e20dcbf39dc33c124969309da2e1b6961.zip |
Get rid of debug printf
Diffstat (limited to '')
-rw-r--r-- | P1/src/mapper.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/P1/src/mapper.c b/P1/src/mapper.c index 0fd6198..c13fed0 100644 --- a/P1/src/mapper.c +++ b/P1/src/mapper.c @@ -111,7 +111,6 @@ void writeIntermediateDS() { char ones[100]= ""; tempNode2 = tempNode -> value; while(tempNode2 != NULL) { - //printf("This loop is being run\n"); strcat(ones, "1 "); tempNode2 = tempNode2 -> next; } |