Re: [PATCH v4 4/4] KEYS: Print insert-sys-cert information to stdout instead of stderr
From: David Howells
Date: Thu Apr 27 2017 - 09:57:29 EST
Mehmet Kayaalp <mkayaalp@xxxxxxxxxxxxxxxxxx> wrote:
> +#define info(format, args...) fprintf(stdout, "INFO: " format, ## args)
Btw, you really ought to be using standard varargs macros:
#define info(format, ...) fprintf(stdout, "INFO: " format, ##__VA_LIST__)
But don't worry about that for now.
David