mutt stable branch with some hacks
0
fork

Configure Feed

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

Remove uninitialized warning for mutt_get_stat_timespec().

The switch covers all the types, but in some cases the compiler still
complains. Explicitly set tv_sec = 0 to silence the warning.

+1
+1
muttlib.c
··· 1972 1972 1973 1973 void mutt_get_stat_timespec (struct timespec *dest, struct stat *sb, mutt_stat_type type) 1974 1974 { 1975 + dest->tv_sec = 0; 1975 1976 dest->tv_nsec = 0; 1976 1977 1977 1978 switch (type)