diff options
author | Michael Adam <obnox@samba.org> | 2009-08-07 09:54:15 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2009-08-07 09:54:15 +0200 |
commit | 2fff622819741a0a7e8fd60aabd68f9580af317e (patch) | |
tree | ef71fd64b7d0f563ac0ea0447cc685660882256b /src | |
parent | 4434dd24f16f9ada9acb90aaf0ad226ed17ab52e (diff) | |
download | tinyproxy-2fff622819741a0a7e8fd60aabd68f9580af317e.tar.gz tinyproxy-2fff622819741a0a7e8fd60aabd68f9580af317e.zip |
send_stored_logs(): remove an implicit cast warning.
Michael
Diffstat (limited to '')
-rw-r--r-- | src/log.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |