diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -10,7 +10,7 @@ C parser for [POM configuration language](https://pom.computer) int main(void) { pom_error *error; - pom_conf *conf = pom_load_path("conf.pom", &error); + pom_conf *conf = pom_load_path(NULL, "conf.pom", &error); if (!conf) { pom_error_print(error); free(error); |