Fix numa build on F9, 32-bit

This commit is contained in:
Daniel P. Berrange 2009-01-05 12:56:36 +00:00
parent 630cf4e22d
commit ca34b4d777
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Mon Jan 5 12:54:21 GMT 2009 Daniel P. Berrange <berrange@redhat.com>
* 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 <meyering@redhat.com>
* Makefile.maint (msg_gen_function): Add to the list.

View File

@ -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;