print newline after csv headers

This commit is contained in:
Eric 2013-09-02 13:18:39 -04:00
parent b606544591
commit 1ed0c2a32d
1 changed files with 2 additions and 1 deletions

View File

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