From 37cf00a7770d05f6fb4e415aa03125842973cff5 Mon Sep 17 00:00:00 2001 From: "John A. Chandy" Date: Mon, 11 Mar 2013 17:51:20 -0400 Subject: [PATCH] changed output in osd_info to go to stderr instead of stdout --- osd-util/osd-util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/osd-util/osd-util.c b/osd-util/osd-util.c index b927d6e..757fd5f 100644 --- a/osd-util/osd-util.c +++ b/osd-util/osd-util.c @@ -72,9 +72,9 @@ osd_info(const char *fmt, ...) fprintf(stderr, "%s: [%s] ", progname, buffer); va_start(ap, fmt); - vfprintf(stdout, fmt, ap); + vfprintf(stderr, fmt, ap); va_end(ap); - fprintf(stdout, ".\n"); + fprintf(stderr, ".\n"); } /*