From 21bd785e84742aa8370d0084ca1bc84aa4752b8a Mon Sep 17 00:00:00 2001 From: balrog Date: Mon, 30 Apr 2007 18:43:50 +0000 Subject: 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 --- hw/pxa2xx.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'hw') diff --git a/hw/pxa2xx.c b/hw/pxa2xx.c index d49e851..ad5f267 100644 --- a/hw/pxa2xx.c +++ b/hw/pxa2xx.c @@ -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); -- cgit v1.1