diff options
author | Berke Kocaoğlu <berke.kocaoglu@metu.edu.tr> | 2021-10-11 06:07:18 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-11 09:07:18 +0600 |
commit | 1449bfc5e960a61438c60a67c28da6d7c5bf2c7f (patch) | |
tree | 8836a07412b26650aa5773bd6ccf9d1a474553d6 /util.c | |
parent | 675db4bbb646ff51cc3ecc8ba7d587670872580a (diff) |
code-style: fix consistency issues all over the codebase (#94)
* remove duplicate comment
* remove empty tabs and blank lines
* move macros and globals ontop
* comment to seprate function implementation
* fix alignment
* switch to *argv[] similar to other suckless code
* kill all empty last lines
* append comment to endif
* reuse existing ARRLEN macro
* comment fall through
* use while (true) everywhere
Co-authored-by: NRK <nrk@disroot.org>
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -30,7 +30,7 @@ const char *progname; void* emalloc(size_t size) { void *ptr; - + ptr = malloc(size); if (ptr == NULL) error(EXIT_FAILURE, errno, NULL); @@ -172,7 +172,7 @@ char* r_readdir(r_dir_t *rdir, bool skip_dotfiles) } return filename; } - + if (rdir->recursive && rdir->stlen > 0) { /* open next subdirectory */ closedir(rdir->dir); @@ -210,4 +210,3 @@ int r_mkdir(char *path) } return 0; } - |