mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-22 04:43:50 +00:00
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
This commit is contained in:
@@ -3105,7 +3105,7 @@ int __manager_event(int category, const char *event,
|
||||
now = ast_tvnow();
|
||||
ast_str_append(&buf, 0,
|
||||
"Timestamp: %ld.%06lu\r\n",
|
||||
now.tv_sec, (unsigned long) now.tv_usec);
|
||||
(long)now.tv_sec, (unsigned long) now.tv_usec);
|
||||
}
|
||||
if (manager_debug) {
|
||||
static int seq;
|
||||
|
Reference in New Issue
Block a user