Skip to content

Commit

Permalink
Merge branch 'stable'
Browse files Browse the repository at this point in the history
Pull in fix for extra space in CSV output
  • Loading branch information
dadrian committed Jan 4, 2015
2 parents 70d497a + d0779be commit 6455f35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/output_modules/module_csv.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ int csv_init(struct state_conf *conf, char **fields, int fieldlens)
log_debug("csv", "more than one field, will add headers");
for (int i=0; i < fieldlens; i++) {
if (i) {
fprintf(file, ", ");
fprintf(file, ",");
}
fprintf(file, "%s", fields[i]);
}
Expand Down

0 comments on commit 6455f35

Please sign in to comment.