print newline after csv headers

This commit is contained in:
Eric 2013-09-02 13:18:39 -04:00
parent b606544591
commit 1ed0c2a32d

View File

@ -45,6 +45,7 @@ int csv_init(struct state_conf *conf, char **fields, int fieldlens)
} }
fprintf(file, "%s", fields[i]); fprintf(file, "%s", fields[i]);
} }
fprintf(file, "\n");
} }
return EXIT_SUCCESS; return EXIT_SUCCESS;
} }