Ignore config copy error

This commit is contained in:
Rodrigo Arias 2023-02-16 15:55:25 +01:00 committed by Rodrigo Arias Mallo
parent f2b6db6a08
commit 2fbf022823

View File

@ -78,10 +78,7 @@ recorder_finish(struct recorder *rec)
} }
/* TODO: Use configs per pvt */ /* TODO: Use configs per pvt */
if (cfg_generate(rec->dir) != 0) { cfg_generate(rec->dir); /* Ignore error */
err("cfg_generate failed");
return -1;
}
return 0; return 0;
} }