From 04f665070cae7a6dcb7eff1b0c860881b63dde91 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 4 Sep 2017 18:04:13 +0200 Subject: [PATCH] hook: bugfix in print hook --- lib/hooks/print.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/hooks/print.c b/lib/hooks/print.c index 1107d6358..2d1d92cfe 100644 --- a/lib/hooks/print.c +++ b/lib/hooks/print.c @@ -41,7 +41,7 @@ static int print_init(struct hook *h) struct print *p = h->_vd; p->uri = NULL; - p->format = io_format_lookup("villas"); + p->format = io_format_lookup("villas-human"); return 0; }