diff options
Diffstat (limited to 'hw/xwin/winvideo.c')
-rwxr-xr-x | hw/xwin/winvideo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xwin/winvideo.c b/hw/xwin/winvideo.c index 529ca76d3..4cdb3c485 100755 --- a/hw/xwin/winvideo.c +++ b/hw/xwin/winvideo.c @@ -143,7 +143,7 @@ winSetupImageVideo (ScreenPtr pScreen) #endif XF86VideoAdaptorPtr adapt; - if (!(adapt = xcalloc (1, sizeof(XF86VideoAdaptorRec)))) + if (!(adapt = calloc(1, sizeof(XF86VideoAdaptorRec)))) return NULL; adapt->type = XvWindowMask | XvInputMask | XvImageMask; |