summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Elkins <me@sigpipe.org>2010-08-06 12:54:08 -0700
committerMichael Elkins <me@sigpipe.org>2010-08-06 12:54:08 -0700
commitd8a782de86931d974e838a1af71351d1c416cd68 (patch)
treefae401c539568a5e396ba67e4481319ec9bf8b49
parentb8d4ddc4b2768600207e0076618da869b69df60e (diff)
avoid using C99 bool
-rw-r--r--browser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/browser.c b/browser.c
index 1a59b3f4..6f4a457f 100644
--- a/browser.c
+++ b/browser.c
@@ -165,13 +165,13 @@ folder_format_str (char *dest, size_t destlen, size_t col, char op, const char *
case 'D':
if (folder->ff->st != NULL)
{
- bool do_locales = true;
+ int do_locales = TRUE;
if (op == 'D') {
t_fmt = NONULL(DateFmt);
if (*t_fmt == '!') {
++t_fmt;
- do_locales = false;
+ do_locales = FALSE;
}
} else {
tnow = time (NULL);