diff options
| -rw-r--r-- | src/engine.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine.c b/src/engine.c index 3505fd0..b80c7e8 100644 --- a/src/engine.c +++ b/src/engine.c @@ -30,7 +30,7 @@ int copy_config(char *path);  void link_config(const AddOpt *opt, const char* newPath) { -  printf("Linking %s -> %s\n", opt->confPath, newPath); +  printf("Linking %s -> %s\n", newPath, opt->confPath);    if (util_symlink_file(newPath, opt->confPath) != 0) {      strcpy(engine_err, "Could not link file.");    }  | 
