From 3da9f8ed19fb797a5defa8116225ede37876594a Mon Sep 17 00:00:00 2001 From: Russell Bryant <russell@russellbryant.com> Date: Sat, 20 Mar 2010 12:03:07 +0000 Subject: [PATCH] Resolve more compiler warnings on FreeBSD. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@253540 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- cdr/cdr_pgsql.c | 6 +++--- cel/cel_pgsql.c | 2 +- main/cel.c | 2 +- main/features.c | 1 + main/manager.c | 2 +- main/stdtime/localtime.c | 1 + main/tcptls.c | 1 + main/test.c | 2 +- 8 files changed, 10 insertions(+), 7 deletions(-) diff --git a/cdr/cdr_pgsql.c b/cdr/cdr_pgsql.c index c3f17d40a9..eae092642a 100644 --- a/cdr/cdr_pgsql.c +++ b/cdr/cdr_pgsql.c @@ -163,7 +163,7 @@ static int pgsql_log(struct ast_cdr *cdr) if (strcmp(cur->name, "start") == 0 || strcmp(cur->name, "calldate") == 0) { if (strncmp(cur->type, "int", 3) == 0) { LENGTHEN_BUF2(13); - ast_str_append(&sql2, 0, "%s%ld", first ? "" : ",", cdr->start.tv_sec); + ast_str_append(&sql2, 0, "%s%ld", first ? "" : ",", (long) cdr->start.tv_sec); } else if (strncmp(cur->type, "float", 5) == 0) { LENGTHEN_BUF2(31); ast_str_append(&sql2, 0, "%s%f", first ? "" : ",", (double)cdr->start.tv_sec + (double)cdr->start.tv_usec / 1000000.0); @@ -177,7 +177,7 @@ static int pgsql_log(struct ast_cdr *cdr) } else if (strcmp(cur->name, "answer") == 0) { if (strncmp(cur->type, "int", 3) == 0) { LENGTHEN_BUF2(13); - ast_str_append(&sql2, 0, "%s%ld", first ? "" : ",", cdr->answer.tv_sec); + ast_str_append(&sql2, 0, "%s%ld", first ? "" : ",", (long) cdr->answer.tv_sec); } else if (strncmp(cur->type, "float", 5) == 0) { LENGTHEN_BUF2(31); ast_str_append(&sql2, 0, "%s%f", first ? "" : ",", (double)cdr->answer.tv_sec + (double)cdr->answer.tv_usec / 1000000.0); @@ -191,7 +191,7 @@ static int pgsql_log(struct ast_cdr *cdr) } else if (strcmp(cur->name, "end") == 0) { if (strncmp(cur->type, "int", 3) == 0) { LENGTHEN_BUF2(13); - ast_str_append(&sql2, 0, "%s%ld", first ? "" : ",", cdr->end.tv_sec); + ast_str_append(&sql2, 0, "%s%ld", first ? "" : ",", (long) cdr->end.tv_sec); } else if (strncmp(cur->type, "float", 5) == 0) { LENGTHEN_BUF2(31); ast_str_append(&sql2, 0, "%s%f", first ? "" : ",", (double)cdr->end.tv_sec + (double)cdr->end.tv_usec / 1000000.0); diff --git a/cel/cel_pgsql.c b/cel/cel_pgsql.c index cdb1d2a164..17654875ce 100644 --- a/cel/cel_pgsql.c +++ b/cel/cel_pgsql.c @@ -166,7 +166,7 @@ static void pgsql_log(const struct ast_event *event, void *userdata) if (strcmp(cur->name, "eventtime") == 0) { if (strncmp(cur->type, "int", 3) == 0) { LENGTHEN_BUF2(13); - ast_str_append(&sql2, 0, "%s%ld", SEP, record.event_time.tv_sec); + ast_str_append(&sql2, 0, "%s%ld", SEP, (long) record.event_time.tv_sec); } else if (strncmp(cur->type, "float", 5) == 0) { LENGTHEN_BUF2(31); ast_str_append(&sql2, 0, "%s%f", diff --git a/main/cel.c b/main/cel.c index 9fe9993a04..0e08e95c65 100644 --- a/main/cel.c +++ b/main/cel.c @@ -421,7 +421,7 @@ struct ast_channel *ast_cel_fabricate_channel_from_event(const struct ast_event } if (ast_strlen_zero(cel_dateformat)) { - snprintf(timebuf, sizeof(timebuf), "%ld.%06ld", record.event_time.tv_sec, + snprintf(timebuf, sizeof(timebuf), "%ld.%06ld", (long) record.event_time.tv_sec, (long) record.event_time.tv_usec); } else { struct ast_tm tm; diff --git a/main/features.c b/main/features.c index 5a2bb02697..44daf37790 100644 --- a/main/features.c +++ b/main/features.c @@ -30,6 +30,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") #include "asterisk/_private.h" #include <pthread.h> +#include <signal.h> #include <sys/time.h> #include <sys/signal.h> #include <netinet/in.h> diff --git a/main/manager.c b/main/manager.c index fdcf2bbc85..f811987f79 100644 --- a/main/manager.c +++ b/main/manager.c @@ -2159,7 +2159,7 @@ static int action_ping(struct mansession *s, const struct message *m) "Ping: Pong\r\n" "Timestamp: %ld.%06lu\r\n" "\r\n", - now.tv_sec, (unsigned long) now.tv_usec); + (long) now.tv_sec, (unsigned long) now.tv_usec); return 0; } diff --git a/main/stdtime/localtime.c b/main/stdtime/localtime.c index 4440a55eff..836ed21553 100644 --- a/main/stdtime/localtime.c +++ b/main/stdtime/localtime.c @@ -48,6 +48,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") +#include <signal.h> #include <sys/stat.h> #include <fcntl.h> #include <float.h> diff --git a/main/tcptls.c b/main/tcptls.c index 5c419c4af8..8c95502e7f 100644 --- a/main/tcptls.c +++ b/main/tcptls.c @@ -33,6 +33,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") #include <fcntl.h> #endif +#include <signal.h> #include <sys/signal.h> #include "asterisk/compat.h" diff --git a/main/test.c b/main/test.c index c5223e6a8f..766775c7aa 100644 --- a/main/test.c +++ b/main/test.c @@ -848,7 +848,7 @@ static char *test_cli_generate_results(struct ast_cli_entry *e, int cmd, struct if (!(buf = ast_str_create(256))) { return NULL; } - ast_str_set(&buf, 0, "%s/asterisk_test_results-%ld.%s", ast_config_AST_LOG_DIR, time.tv_sec, type); + ast_str_set(&buf, 0, "%s/asterisk_test_results-%ld.%s", ast_config_AST_LOG_DIR, (long) time.tv_sec, type); file = ast_str_buffer(buf); } -- GitLab