]> granicus.if.org Git - neomutt/commitdiff
avoid using C99 bool
authorMichael Elkins <me@mutt.org>
Fri, 6 Aug 2010 19:54:08 +0000 (12:54 -0700)
committerMichael Elkins <me@mutt.org>
Fri, 6 Aug 2010 19:54:08 +0000 (12:54 -0700)
browser.c

index 1a59b3f4b58124becff6e08fdf1fe304c1ea103a..6f4a457fd2cf4fbb00565b6e6bca3afefd733280 100644 (file)
--- 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);