send_stored_logs(): remove an implicit cast warning.

Michael
This commit is contained in:
Michael Adam 2009-08-07 09:54:15 +02:00
parent 4434dd24f1
commit 2fff622819

View File

@ -216,7 +216,7 @@ send_stored_logs (void)
for (i = 0; (ssize_t)i != vector_length (log_message_storage); ++i)
{
string = vector_getentry (log_message_storage, i, NULL);
string = (char *)vector_getentry (log_message_storage, i, NULL);
ptr = strchr (string, ' ') + 1;
level = atoi (string);