get rid of compile warning (bug #3054)

git-svn-id: https://origsvn.digium.com/svn/libpri/branches/v1-0@166 2fbb986a-6c06-0410-b554-c9c1f0a7f128
This commit is contained in:
Russell Bryant
2004-12-15 18:06:38 +00:00
parent 1776a47991
commit af8e88d31d

4
pri.c
View File

@@ -417,7 +417,7 @@ void pri_message(char *fmt, ...)
if (__pri_message)
__pri_message(tmp);
else
fprintf(stdout, tmp);
fputs(tmp, stdout);
}
void pri_error(char *fmt, ...)
@@ -430,7 +430,7 @@ void pri_error(char *fmt, ...)
if (__pri_error)
__pri_error(tmp);
else
fprintf(stderr, tmp);
fputs(tmp, stderr);
}
/* Set overlap mode */