diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2006-09-27 13:44:15 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2006-09-27 13:44:15 -0700 |
commit | 34b32e0f6773004138543e6f41f5639736493707 (patch) | |
tree | 070af3eb00aa730d66c7cbb898743247514217d1 /src | |
parent | 142aa1230c651bc70d192edbbfa6870488006d36 (diff) |
Fix sparse warning: Using plain integer as NULL pointer
Diffstat (limited to 'src')
-rw-r--r-- | src/XvMCWrapper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/XvMCWrapper.c b/src/XvMCWrapper.c index 9fa0c99..42f175d 100644 --- a/src/XvMCWrapper.c +++ b/src/XvMCWrapper.c @@ -232,7 +232,7 @@ static int preInitW(Display *dpy) * Resolve functions that are not hw driver specific. */ - void *handleZ = 0; + void *handleZ = NULL; wrapperPreInit = 1; xW.preInitialised = 0; |