Remove the use of Linux / BSD specific asprintf call.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2760 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
9e61ec3153
commit
21bd785e84
@ -1518,14 +1518,13 @@ struct pxa2xx_state_s *pxa270_init(DisplayState *ds, const char *revision)
|
||||
{
|
||||
struct pxa2xx_state_s *s;
|
||||
struct pxa2xx_ssp_s *ssp;
|
||||
char *cpu_model;
|
||||
char cpu_model[16];
|
||||
int iomemtype, i;
|
||||
s = (struct pxa2xx_state_s *) qemu_mallocz(sizeof(struct pxa2xx_state_s));
|
||||
|
||||
s->env = cpu_init();
|
||||
asprintf(&cpu_model, "pxa270-%s", revision);
|
||||
snprintf(cpu_model, sizeof(cpu_model), "pxa270-%s", revision);
|
||||
cpu_arm_set_model(s->env, cpu_model);
|
||||
free(cpu_model);
|
||||
|
||||
s->pic = pxa2xx_pic_init(0x40d00000, s->env);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user