(!1788) xfree86: xf86configure: use NULL instead of 0
Zero pointers should be initialized w/ NULL instead of raw 0. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
b61647f3a1
commit
0fd6315f74
|
@ -848,7 +848,7 @@ DoShowOptions(void)
|
|||
int i = 0;
|
||||
const char **vlist = NULL;
|
||||
char *pSymbol = 0;
|
||||
XF86ModuleData *initData = 0;
|
||||
XF86ModuleData *initData = NULL;
|
||||
|
||||
if (!(vlist = GenerateDriverList())) {
|
||||
ErrorF("Missing output drivers\n");
|
||||
|
|
Loading…
Reference in New Issue