Mehmet Kayaalp 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
Detailed INFO output should go to stdout instead of stderr.
Signed-off-by: Mehmet Kayaalp
---
scripts/insert-sys-cert.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/insert-sys-cert.c b/scripts/insert-sys-cert.c
index f558616..56c5482 100644
--- a/scripts/insert-sys
2 matches
Mail list logo