From b122217d90171a7989fcc792d229444b66d99649 Mon Sep 17 00:00:00 2001 From: Glenn L McGrath Date: Thu, 28 Nov 2002 10:25:19 +0000 Subject: Use error_msg( instead of fprintf(stderr --- libbb/module_syscalls.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libbb/module_syscalls.c b/libbb/module_syscalls.c index cf922f8eb..6bfff207f 100644 --- a/libbb/module_syscalls.c +++ b/libbb/module_syscalls.c @@ -51,8 +51,8 @@ _syscall5(int, init_module, void *, first, void *, second, void *, third, #warning -> The query_module system call is being stubbed out... int query_module(const char *name, int which, void *buf, size_t bufsize, size_t *ret) { - fprintf(stderr, "\n\nTo make this application work, you will need to recompile\n"); - fprintf(stderr, "with a kernel supporting the query_module system call. -Erik\n\n"); + error_msg("\n\nTo make this application work, you will need to recompile\n" + "with a kernel supporting the query_module system call. -Erik\n"); errno=ENOSYS; return -1; } -- cgit v1.2.3