From: Daniel P. Berrange Date: Mon, 5 Jan 2009 12:56:36 +0000 (+0000) Subject: Fix numa build on F9, 32-bit X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=ca34b4d77769c99283481d7211f32fa5ef400cf9;p=libvirt.git Fix numa build on F9, 32-bit --- diff --git a/ChangeLog b/ChangeLog index 61158ab7ea..89d0b6f26b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Mon Jan 5 12:54:21 GMT 2009 Daniel P. Berrange + + * src/nodeinfo.c: s/uint64_t/unsigned long/ for the + numa_node_to_cpus() API call. + Mon Jan 5 09:11:21 CET 2009 Jim Meyering * Makefile.maint (msg_gen_function): Add to the list. diff --git a/src/nodeinfo.c b/src/nodeinfo.c index d9f2b1d701..0a932974ea 100644 --- a/src/nodeinfo.c +++ b/src/nodeinfo.c @@ -194,7 +194,7 @@ int virCapsInitNUMA(virCapsPtr caps) { int n; - uint64_t *mask = NULL; + unsigned long *mask = NULL; int *cpus = NULL; int ret = -1; int max_n_cpus = NUMA_MAX_N_CPUS;