summaryrefslogtreecommitdiff
path: root/omapip
diff options
context:
space:
mode:
authorThomas Markwalder <tmark@isc.org>2019-06-12 07:06:14 -0400
committerThomas Markwalder <tmark@isc.org>2019-06-12 09:57:33 -0400
commitc138f38bd00ceca4e1e51a4db7542a15ef79babd (patch)
treec83d15eaff60acd11e67644ebc1aed21d686e018 /omapip
parente119ecf6b782253bfc3528e4779481661e2b9bb8 (diff)
downloadisc-dhcp-c138f38bd00ceca4e1e51a4db7542a15ef79babd.tar.gz
[#15,!10] Addressed review comments
Diffstat (limited to 'omapip')
-rw-r--r--omapip/errwarn.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/omapip/errwarn.c b/omapip/errwarn.c
index 62e0d5ee..2bb50fd0 100644
--- a/omapip/errwarn.c
+++ b/omapip/errwarn.c
@@ -54,7 +54,7 @@ void log_fatal (const char * fmt, ... )
{
va_list list;
- do_percentm (fbuf, sizeof(fbuf), fmt);
+ do_percentm (fbuf, sizeof fbuf, fmt);
/* %Audit% This is log output. %2004.06.17,Safe%
* If we truncate we hope the user can get a hint from the log.
@@ -93,7 +93,7 @@ int log_error (const char * fmt, ...)
{
va_list list;
- do_percentm (fbuf, sizeof(fbuf), fmt);
+ do_percentm (fbuf, sizeof fbuf, fmt);
/* %Audit% This is log output. %2004.06.17,Safe%
* If we truncate we hope the user can get a hint from the log.
@@ -120,7 +120,7 @@ int log_info (const char *fmt, ...)
{
va_list list;
- do_percentm (fbuf, sizeof(fbuf), fmt);
+ do_percentm (fbuf, sizeof fbuf, fmt);
/* %Audit% This is log output. %2004.06.17,Safe%
* If we truncate we hope the user can get a hint from the log.
@@ -147,7 +147,7 @@ int log_debug (const char *fmt, ...)
{
va_list list;
- do_percentm (fbuf, sizeof(fbuf), fmt);
+ do_percentm (fbuf, sizeof fbuf, fmt);
/* %Audit% This is log output. %2004.06.17,Safe%
* If we truncate we hope the user can get a hint from the log.