From: Shannon Zhao Date: Tue, 31 May 2016 05:02:53 +0000 (+0800) Subject: libxl/arm: Fix the function name in error log X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~915 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=2f7b56c1a7b1ee92ff5f92888723e380412dd3ab;p=xen.git libxl/arm: Fix the function name in error log It should be xc_dom_devicetree_mem instead of xc_dom_devicetree_file. Signed-off-by: Shannon Zhao Acked-by: Wei Liu --- diff --git a/tools/libxl/libxl_arm.c b/tools/libxl/libxl_arm.c index 1195b37fc1..c6d77e3f90 100644 --- a/tools/libxl/libxl_arm.c +++ b/tools/libxl/libxl_arm.c @@ -872,7 +872,7 @@ next_resize: res = xc_dom_devicetree_mem(dom, fdt, fdt_totalsize(fdt)); if (res) { - LOGE(ERROR, "xc_dom_devicetree_file failed"); + LOGE(ERROR, "xc_dom_devicetree_mem failed"); rc = ERROR_FAIL; goto out; }