Il 27/09/2012 07:14, Dong Xu Wang ha scritto:
> +int qemu_opt_set_number(QemuOpts *opts, const char *name, int64_t val)
> +{
> + char buffer[1024];
> + snprintf(buffer, sizeof(buffer), "%" PRId64, val);
> + return qemu_opt_set(opts, name, buffer);
> +}This has the same problem as qemu_opt_set_bool after patch 1. Paolo
