summaryrefslogtreecommitdiff
path: root/main/sched.c
diff options
context:
space:
mode:
authorLuigi Rizzo <rizzo@icir.org>2008-05-15 10:56:29 +0000
committerLuigi Rizzo <rizzo@icir.org>2008-05-15 10:56:29 +0000
commit18065a175d5012a4f1033e8c05c064007494ed3c (patch)
treefd6541cd8a4854ac1626ebbcb1eb20202e358260 /main/sched.c
parent193d16cbde6e638c15490fc9a38dd03428c2ab12 (diff)
Use casts or intermediate variables to remove a number
of platform/compiler-dependent warnings when handing struct timeval fields, both reading and printing them. It is a lost battle to handle the different ways struct timeval is handled on the various platforms and compilers, so try to be pragmatic and go through int/long which are universally supported. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@116557 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/sched.c')
-rw-r--r--main/sched.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/sched.c b/main/sched.c
index 91d86164e..c40375d72 100644
--- a/main/sched.c
+++ b/main/sched.c
@@ -437,7 +437,7 @@ void ast_sched_dump(const struct sched_context *con)
q->id,
q->callback,
q->data,
- delta.tv_sec,
+ (long)delta.tv_sec,
(long int)delta.tv_usec);
}
ast_debug(1, "=============================================================\n");