bootchart: it's not OK to return -1 from a main program

This commit is contained in:
Lennart Poettering
2014-08-11 18:23:47 +02:00
parent 96ddbf819a
commit 4155f7d4be
Notes: Lennart Poettering 2014-08-19 20:55:10 +02:00
Backport: bugfix

View File

@@ -380,8 +380,8 @@ int main(int argc, char *argv[]) {
sampledata = new0(struct list_sample_data, 1);
if (sampledata == NULL) {
log_error("Failed to allocate memory for a node: %m");
return -1;
log_oom();
return EXIT_FAILURE;
}
sampledata->sampletime = gettime_ns();