summaryrefslogtreecommitdiff
path: root/examples/read_conf.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2025-09-11 19:17:23 -0400
committerpommicket <pommicket@gmail.com>2025-09-11 19:17:28 -0400
commitaab7700e2bba9216a8343e8e4e0cd0096026ba1a (patch)
treeb98c5cfc0589335c7aa81fc5bdafb8ca3564668b /examples/read_conf.c
parentec9cf4ef9b4ff2a16172e72adf5fca2a94ba3009 (diff)
Reading lines
Diffstat (limited to 'examples/read_conf.c')
-rw-r--r--examples/read_conf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/read_conf.c b/examples/read_conf.c
index da23534..b18be3a 100644
--- a/examples/read_conf.c
+++ b/examples/read_conf.c
@@ -2,9 +2,9 @@
#include "pom.h"
-int main(void) {
+int main(int argc, char **argv) {
pom_error *error;
- pom_conf *conf = pom_load_path("foo", &error);
+ pom_conf *conf = pom_load_path(argc >= 2 ? argv[1] : "conf.pom", &error);
if (!conf) {
pom_error_print(error);
free(error);