From: Wei Liu Date: Tue, 14 Jul 2015 16:41:12 +0000 (+0100) Subject: xl: fix a typo in error string in create_domain X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~2819 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=e3935318bf402ef3374ac05ca5d5245f9cc66f5a;p=xen.git xl: fix a typo in error string in create_domain Signed-off-by: Wei Liu Acked-by: Ian Jackson --- diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c index 888f729fe4..8b4be72fe8 100644 --- a/tools/libxl/xl_cmdimpl.c +++ b/tools/libxl/xl_cmdimpl.c @@ -2658,7 +2658,7 @@ static uint32_t create_domain(struct domain_create *dom_info) } if (!restoring && extra_config && strlen(extra_config)) { if (config_len > INT_MAX - (strlen(extra_config) + 2 + 1)) { - fprintf(stderr, "Failed to attach extra configration\n"); + fprintf(stderr, "Failed to attach extra configuration\n"); return ERROR_FAIL; } /* allocate space for the extra config plus two EOLs plus \0 */