From: Andrew Cooper Date: Tue, 13 Nov 2018 18:26:39 +0000 (+0000) Subject: xen/keyhandler: Restore missing parenthesis in dump_domains() X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~2963 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=80488fff7e71d684f960ab320298ef1400c29500;p=xen.git xen/keyhandler: Restore missing parenthesis in dump_domains() This was accidentially dropped in c/s 889b200cb52 "Change timestamps representation for keyhandlers". Signed-off-by: Andrew Cooper Acked-by: Wei Liu --- diff --git a/xen/common/keyhandler.c b/xen/common/keyhandler.c index 60bbeebb4b..9495601f5d 100644 --- a/xen/common/keyhandler.c +++ b/xen/common/keyhandler.c @@ -286,8 +286,8 @@ static void dump_domains(unsigned char key) s_time_t now = NOW(); #define tmpstr keyhandler_scratch - printk("'%c' pressed -> dumping domain info (now = %"PRI_stime"\n", key, - now); + printk("'%c' pressed -> dumping domain info (now = %"PRI_stime")\n", + key, now); rcu_read_lock(&domlist_read_lock);