Misc coding style cleanup

Use a[b] instead of *(a+b), fix whitespace.

Signed-off-by: Mikhail Gusarov <dottedmag@dottedmag.net>
Reviewed-by: Keith Packard <keithp@keithp.com>
This commit is contained in:
Mikhail Gusarov 2010-05-13 03:51:00 +07:00
parent 816b79dd06
commit 432cbbec19

View File

@ -145,8 +145,8 @@ MakeAtom(const char *string, unsigned len, Bool makeit)
*np = nd;
nd->left = nd->right = NULL;
nd->fingerPrint = fp;
nd->a = (++lastAtom);
*(nodeTable+lastAtom) = nd;
nd->a = ++lastAtom;
nodeTable[lastAtom] = nd;
return nd->a;
}
else