sbase

suckless unix tools
git clone git://git.2f30.org/sbase
Log | Files | Refs | README | LICENSE

commit 933ed8c00b0641e970a2954b7605298c80961d85
parent 286df29e7d78ae4a6b4474bb14d517e02e4f0489
Author: FRIGN <dev@frign.de>
Date:   Mon,  2 Mar 2015 14:36:26 +0100

Rename unused flag in rm()

Before somebody gets the wrong idea again like I did.

Diffstat:
Mlibutil/rm.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libutil/rm.c b/libutil/rm.c @@ -10,7 +10,7 @@ int rm_rflag = 0; int rm_status = 0; void -rm(const char *path, int unused) +rm(const char *path, int flag) { if (rm_rflag) recurse(path, rm, 'P');