Skip to content

Commit

Permalink
changed output in osd_info to go to stderr instead of stdout
Browse files Browse the repository at this point in the history
  • Loading branch information
joc02012 committed Mar 11, 2013
1 parent 29e7d12 commit 37cf00a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions osd-util/osd-util.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}

/*
Expand Down

0 comments on commit 37cf00a

Please sign in to comment.