From 7eef1d290672faa20a75b343e803db4d8a40d164 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Delanoy?= Date: Tue, 22 Sep 2009 22:55:33 +0200 Subject: cmd: Avoid comparing BOOLs against FALSE --- programs/cmd/directory.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/programs/cmd/directory.c b/programs/cmd/directory.c index 647f4f1..b60170f 100644 --- a/programs/cmd/directory.c +++ b/programs/cmd/directory.c @@ -337,7 +337,7 @@ static DIRECTORY_STACK *WCMD_list_directory (DIRECTORY_STACK *inputparms, int le /* Output the results */ if (!bare) { if (level != 0 && (entry_count > 0)) WCMD_output (newline); - if (!recurse || ((entry_count > 0) && done_header==FALSE)) { + if (!recurse || ((entry_count > 0) && !done_header)) { static const WCHAR headerW[] = {'D','i','r','e','c','t','o','r','y',' ','o','f', ' ','%','s','\n','\n','\0'}; WCMD_output (headerW, real_path); -- 1.6.4.4