X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=sidebar.c;h=905a6da9b0879fbdaafae93b20d0666ecb937e24;hp=da858b1ee0531dbdc9e0f3b27cbb790ba881d728;hb=9342efc81d163ea56e079b4adf2ce17c41c853b0;hpb=7f7a0be369840b290248e5b0302beb447fa1b3cd diff --git a/sidebar.c b/sidebar.c index da858b1..905a6da 100644 --- a/sidebar.c +++ b/sidebar.c @@ -208,7 +208,7 @@ int make_sidebar_entry (char* box, int idx, size_t len) mutt_FormatString (no, len, NONULL (SidebarNumberFormat), sidebar_number_format, idx, M_FORMAT_OPTIONAL); lencnt = m_strlen(no); - memset (&entry, ' ', sizeof (entry)); + memset(&entry, ' ', sizeof(entry)); #if USE_IMAP if (l > 0 && str_ncmp (box, ImapHomeNamespace, l) == 0 && @@ -289,9 +289,9 @@ void sidebar_draw_frames (void) { move (i, SidebarWidth - delim_len); if (option (OPTASCIICHARS)) addstr (NONULL (SidebarDelim)); - else if (!option (OPTASCIICHARS) && !str_cmp (SidebarDelim, "|")) + else if (!option (OPTASCIICHARS) && !m_strcmp(SidebarDelim, "|")) addch (ACS_VLINE); - else if ((Charset_is_utf8) && !str_cmp (SidebarDelim, "|")) + else if ((Charset_is_utf8) && !m_strcmp(SidebarDelim, "|")) addstr ("\342\224\202"); else addstr (NONULL (SidebarDelim)); @@ -387,7 +387,7 @@ int sidebar_draw (int menu) { SETCOLOR (MT_COLOR_NORMAL); /* fill with blanks to bottom */ - memset (&blank, ' ', sizeof (blank)); + memset(&blank, ' ', sizeof(blank)); for (; line < last_line; line++) { move (line, 0); addnstr (blank, SidebarWidth-delim_len);