X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Fsrc%2Fdevices%2Ftimer.c;h=d941fe5b264ae633073a0db202058b4a6ff1492d;hb=2b1f4ef19d766727f873476861c64339c8836a40;hp=24c2a8379db0cd826d7a22397d37e33e3b2fd21e;hpb=ba112e34a1151ff27c2161c1b7b85fe52392e42d;p=palacios.releases.git diff --git a/palacios/src/devices/timer.c b/palacios/src/devices/timer.c index 24c2a83..d941fe5 100644 --- a/palacios/src/devices/timer.c +++ b/palacios/src/devices/timer.c @@ -40,7 +40,7 @@ static struct vm_device_ops dev_ops = { struct vm_device * create_timer() { struct timer_state * timer = NULL; - VMMMalloc(struct timer_state *, timer, sizeof(struct timer_state)); + V3_Malloc(struct timer_state *, timer, sizeof(struct timer_state)); struct vm_device * dev = create_device("Timer", &dev_ops, timer); return dev;