mutt stable branch with some hacks
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix __attribute__((warn_unused_result)) warning in enter.c

authored by

David Champion and committed by
Kevin McCarthy
09dfed3f 317b7f6b

+2 -1
+2 -1
enter.c
··· 96 96 /* If this works, we can stop now */ 97 97 if (dlen >= MB_LEN_MAX) 98 98 { 99 - wcrtomb (dest, 0, &st); 99 + /* We don't need to update dest - this just appeases -Wunused-result */ 100 + dest += wcrtomb (dest, 0, &st); 100 101 return; 101 102 } 102 103