diff options
author | Mukund Sivaraman <muks@banu.com> | 2008-08-24 10:58:16 +0530 |
---|---|---|
committer | Mukund Sivaraman <muks@banu.com> | 2008-08-24 10:58:16 +0530 |
commit | 62ddbd5e7491c4a751f0a4523b1d9d7acaeba9dd (patch) | |
tree | 6dc1d889a5a0318ad0632da3518a7ea342d8474f /src/log.c | |
parent | 90c1bb4b738dadc78867dcaec45993fc26a15233 (diff) |
pos can never be less than 0 as it's of type size_t
Also fix the type which is passed in from various places.
Diffstat (limited to 'src/log.c')
-rw-r--r-- | src/log.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -203,7 +203,7 @@ send_stored_logs(void) int level; - int i; + size_t i; for (i = 0; i != vector_length(log_message_storage); ++i) { string = vector_getentry(log_message_storage, i, NULL); |