dmx: avoid hilarious #define Xcalloc xcalloc game.

This commit is contained in:
Peter Hutterer 2008-10-17 09:59:29 +10:30
parent 8a23707b86
commit 8d0cb507ae

View File

@ -113,7 +113,7 @@ void dmxPointerPutMotionEvent(DeviceIntPtr pDevice,
* DMX_MOTION_SIZE);
dmxLocal->head = 0;
dmxLocal->tail = 0;
dmxLocal->valuators = xcalloc(sizeof(*dmxLocal->valuators), numAxes);
dmxLocal->valuators = calloc(sizeof(*dmxLocal->valuators), numAxes);
} else {
if (++dmxLocal->tail >= DMX_MOTION_SIZE) dmxLocal->tail = 0;
if (dmxLocal->head == dmxLocal->tail)