xaizek / vifm (License: GPLv2+) (since 2018-12-07)
Vifm is a file manager with curses interface, which provides Vi[m]-like environment for managing objects within file systems, extended with some useful ideas from mutt.
Commit 111e74233506a06be8917fcbdb8f4ba9de47218a

Explicitly ignore unused result in dir_size_bg()
Author: xaizek
Author date (UTC): 2014-10-25 10:44
Committer name: xaizek
Committer date (UTC): 2014-10-25 10:44
Parent(s): d28a486c24dce4d69fd39afeca6ac52825667bce
Signing key:
Tree: 9279b27eeb96c9680972ba8833b711a14d68342c
File Lines added Lines deleted
src/fileops.c 1 1
File src/fileops.c changed (mode: 100644) (index a69c9f86a..ae8b9e03a)
... ... dir_size_bg(void *arg)
3412 3412 { {
3413 3413 dir_size_args_t *const dir_size = arg; dir_size_args_t *const dir_size = arg;
3414 3414
3415 calc_dirsize(dir_size->path, dir_size->force);
3415 (void)calc_dirsize(dir_size->path, dir_size->force);
3416 3416
3417 3417 remove_last_path_component(dir_size->path); remove_last_path_component(dir_size->path);
3418 3418 if(path_starts_with(lwin.curr_dir, dir_size->path)) if(path_starts_with(lwin.curr_dir, dir_size->path))
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/vifm

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/vifm

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master