summaryrefslogtreecommitdiff
path: root/replace.c
diff options
context:
space:
mode:
Diffstat (limited to 'replace.c')
-rw-r--r--replace.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/replace.c b/replace.c
index d9a0157..8fcf51d 100644
--- a/replace.c
+++ b/replace.c
@@ -76,11 +76,11 @@ replaceinfile(char *originalfile, char *destinationfile, char *placeholder, char
i += strlen(placeholder);
substr++;
substr = strstr(substr, placeholder);
- printf("%s", replacement);
+ //printf("%s", replacement);
fprintf(destination, "%s", replacement);
}
ch = filebuffer[i];
- putchar(ch);
+ //putchar(ch);
fputc(ch, destination);
}
fclose(template);