aboutsummaryrefslogtreecommitdiff
path: root/common.c
diff options
context:
space:
mode:
Diffstat (limited to 'common.c')
-rw-r--r--common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common.c b/common.c
index bb8681a..0e76a85 100644
--- a/common.c
+++ b/common.c
@@ -26,7 +26,7 @@ int vget_int_value_from_filef(const char* format, va_list args)
{
char filename[1024];
if (vsnprintf(filename, sizeof(filename), format, args) == sizeof(filename))
- fprintf(stderr, "WARN: filename buffer too small");
+ info("Error: filename buffer too small");
return get_int_value_from_file(filename);
}