aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxc/xc_private.c
diff options
context:
space:
mode:
authorRoger Pau Monne <roger.pau@citrix.com>2012-07-23 13:09:44 +0100
committerRoger Pau Monne <roger.pau@citrix.com>2012-07-23 13:09:44 +0100
commitf778d0fa882611997cc32d44537116f41e36cabb (patch)
tree268d97ad44510299e45da5351e8bb0a710659a6f /tools/libxc/xc_private.c
parenta97def2ebbb36191e34cd7d19b94011e8a23b189 (diff)
downloadxen-f778d0fa882611997cc32d44537116f41e36cabb.tar.gz
xen-f778d0fa882611997cc32d44537116f41e36cabb.tar.bz2
xen-f778d0fa882611997cc32d44537116f41e36cabb.zip
xenstore: don't print an error when gntdev cannot be opened
NetBSD doesn't have a gntdev, but we should not print an error when falling back to the previous implementation. Signed-off-by: Roger Pau Monne <roger.pau@citrix.com> Acked-by: Ian Campbell <ian.campbell@citrix.com> Committed-by: Ian Campbell <ian.campbell@citrix.com>
Diffstat (limited to 'tools/libxc/xc_private.c')
-rw-r--r--tools/libxc/xc_private.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/libxc/xc_private.c b/tools/libxc/xc_private.c
index 3ceed3e660..3e03a91fba 100644
--- a/tools/libxc/xc_private.c
+++ b/tools/libxc/xc_private.c
@@ -174,7 +174,7 @@ static struct xc_interface_core *xc_interface_open_common(xentoollog_logger *log
xch->ops = xch->osdep.init(xch, type);
if ( xch->ops == NULL )
{
- ERROR("OSDEP: interface %d (%s) not supported on this platform",
+ DPRINTF("OSDEP: interface %d (%s) not supported on this platform",
type, xc_osdep_type_name(type));
goto err_put_iface;
}