add missing parameter name in function pointer member declaration. No functional change.
Signed-off-by: Nicola Vetrini <[email protected]> --- xen/include/xen/param.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/include/xen/param.h b/xen/include/xen/param.h index f5a2189400..3b6f134b07 100644 --- a/xen/include/xen/param.h +++ b/xen/include/xen/param.h @@ -90,7 +90,7 @@ extern const struct kernel_param __setup_start[], __setup_end[]; struct param_hypfs { struct hypfs_entry_leaf hypfs; void (*init_leaf)(struct param_hypfs *par); - int (*func)(const char *); + int (*func)(const char *s); }; extern struct param_hypfs __paramhypfs_start[], __paramhypfs_end[]; -- 2.51.2
