Signed-off-by: Eduardo Habkost <ehabk...@redhat.com> --- vl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/vl.c b/vl.c index f0fe48b..337f340 100644 --- a/vl.c +++ b/vl.c @@ -1418,7 +1418,7 @@ static void smp_parse(QemuOpts *opts) max_cpus = smp_cpus; } - if (max_cpus > 255) { + if (max_cpus > MAX_CPUMASK_BITS) { fprintf(stderr, "Unsupported number of maxcpus\n"); exit(1); } -- 1.8.5.3