From 538a5956b45482719b4872f3eda85399c2966729 Mon Sep 17 00:00:00 2001 From: netbenixcn Date: Sun, 7 Jun 2020 12:40:43 +0200 Subject: [PATCH] Update to Version 0.2.0 --- commands/show_dir.c | 2 +- main.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/show_dir.c b/commands/show_dir.c index 240524e..6b5e540 100644 --- a/commands/show_dir.c +++ b/commands/show_dir.c @@ -26,7 +26,7 @@ void showDirectory(char *arg[]){ DIR *d; struct dirent *dir; char path[PATH_MAX]; - + d = opendir(arg[1]); if(d == NULL){ printf("Folder not found.\n"); diff --git a/main.c b/main.c index d0fb5e1..3fd234f 100644 --- a/main.c +++ b/main.c @@ -18,7 +18,7 @@ #include "utils/sys_info.h" -#define VERSION "0.1.0" +#define VERSION "0.2.0" #define AUTHOR "netbenix" void exit_app(){