From: Francois Fleuret Date: Thu, 27 Jan 2011 21:36:26 +0000 (+0100) Subject: Added the "%s" format when simply writing a string. X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=dus.git;a=commitdiff_plain;h=e299f447aad7b0ad4db7ccd745ff224a85c4ca93 Added the "%s" format when simply writing a string. --- diff --git a/dus.c b/dus.c index 9d1850c..c698d2e 100644 --- a/dus.c +++ b/dus.c @@ -374,7 +374,7 @@ void print_sorted(struct entry_node *root, int width, int height) { line[width] = '\n'; line[width + 1] = '\0'; } - printf(line); + printf("%s", line); } if(height >= 0 && nb_nodes > height && show_top && !forced_height) {