diff options
author | Harry Jeffery <harry@exec64.co.uk> | 2017-04-18 17:53:20 +0100 |
---|---|---|
committer | Harry Jeffery <harry@exec64.co.uk> | 2017-04-18 17:53:20 +0100 |
commit | 2df9da145a66d8551c940218fb5150151fc0864c (patch) | |
tree | 970f202aff7e7f313da2b3887403589dbeb30a32 /src | |
parent | 202a2c8c8af2bc2f5f910042d134069142375b67 (diff) | |
download | imv-2df9da145a66d8551c940218fb5150151fc0864c.tar.gz |
Implement imv_add_path
Diffstat (limited to 'src')
-rw-r--r-- | src/imv.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -236,8 +236,7 @@ bool imv_parse_args(struct imv *imv, int argc, char **argv) void imv_add_path(struct imv *imv, const char *path) { - (void)imv; - (void)path; + imv_navigator_add(imv->navigator, path, imv->recursive_load); } bool imv_run(struct imv *imv) |