Commit 52848b78 authored by Ulrich Sibiller's avatar Ulrich Sibiller

Keyboard.c: use NULL instead of 0

parent 3ea601bc
...@@ -1800,11 +1800,11 @@ static int nxagentXkbGetNames(char **rules, char **model, char **layout, ...@@ -1800,11 +1800,11 @@ static int nxagentXkbGetNames(char **rules, char **model, char **layout,
void nxagentKeycodeConversionSetup(void) void nxagentKeycodeConversionSetup(void)
{ {
char *drules = 0; char *drules = NULL;
char *dmodel = 0; char *dmodel = NULL;
char *dlayout = 0; char *dlayout = NULL;
char *dvariant = 0; char *dvariant = NULL;
char *doptions = 0; char *doptions = NULL;
unsigned int drulesLen; unsigned int drulesLen;
nxagentKeycodeConversion = 0; nxagentKeycodeConversion = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment