From 87d0df2343695853a67e240c58452603f0a5b479 Mon Sep 17 00:00:00 2001 From: Francois Fleuret Date: Thu, 27 Jan 2011 22:28:16 +0100 Subject: [PATCH] Added the "%s" format when simply writing a string. --- selector.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/selector.c b/selector.c index 0a8cf24..daf2c26 100644 --- a/selector.c +++ b/selector.c @@ -796,7 +796,7 @@ void read_file(struct hash_table_t *hash_table, raw_line[BUFFER_SIZE - 1] = '\0'; fprintf(stderr, "selector: Line too long (max is %d characters):\n", BUFFER_SIZE); - fprintf(stderr, raw_line); + fprintf(stderr, "%s", raw_line); fprintf(stderr, "\n"); exit(EXIT_FAILURE); } @@ -1251,7 +1251,7 @@ int main(int argc, char **argv) { FILE *out = fopen(output_filename, "w"); if(out) { if(t) { - fprintf(out, t); + fprintf(out, "%s", t); } fprintf(out, "\n"); } else { -- 2.20.1