Commit f02c9940 f02c99404d4f990047518a29de197954ba3889a6 by Sergey Poznyakoff

(fetch_internaldate): Added typecast to shut up the compiler warning.

1 parent 1bd09654
...@@ -351,7 +351,7 @@ fetch_internaldate (struct fetch_command *command, char **arg) ...@@ -351,7 +351,7 @@ fetch_internaldate (struct fetch_command *command, char **arg)
351 date[0] = '\0'; 351 date[0] = '\0';
352 envelope_date (env, date, sizeof (date), NULL); 352 envelope_date (env, date, sizeof (date), NULL);
353 p = date; 353 p = date;
354 mu_parse_ctime_date_time (&p, &tm, &tz); 354 mu_parse_ctime_date_time ((const char **) &p, &tm, &tz);
355 strftime (date, sizeof (date), "%d-%b-%Y %X", &tm); 355 strftime (date, sizeof (date), "%d-%b-%Y %X", &tm);
356 util_send ("%s", command->name); 356 util_send ("%s", command->name);
357 util_send (" \"%s +0000\"", date); 357 util_send (" \"%s +0000\"", date);
......