aboutsummaryrefslogtreecommitdiffstats
path: root/utils.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-08-23 17:55:59 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-08-23 17:55:59 +0000
commit9d5404714537d001454f8a2370ddf291ceb10ac5 (patch)
treed44e347281a48779e2d82e0c7092f1f4b88adb51 /utils.c
parent9a19b48fb95f11257998c7fe9c2bf954c571fa70 (diff)
make the warning message be LOG_WARNING (issue #4960)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6388 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'utils.c')
-rwxr-xr-xutils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils.c b/utils.c
index bf231d818..8accaa75a 100755
--- a/utils.c
+++ b/utils.c
@@ -502,7 +502,7 @@ int ast_false(const char *s)
static struct timeval tvfix(struct timeval a)
{
if (a.tv_usec >= ONE_MILLION) {
- ast_log(LOG_ERROR, "warning too large timestamp %ld.%ld\n",
+ ast_log(LOG_WARNING, "warning too large timestamp %ld.%ld\n",
a.tv_sec, a.tv_usec);
a.tv_sec += a.tv_usec % ONE_MILLION;
a.tv_usec %= ONE_MILLION;