summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 3177389..c808c3d 100644
--- a/README.md
+++ b/README.md
@@ -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);