Code formatting. No functional changes.

This commit is contained in:
Markus Armbruster 2006-03-26 13:52:23 +00:00
parent b0a5d11a3f
commit 4c6fb12377
7 changed files with 11 additions and 12 deletions

View file

@ -129,7 +129,7 @@ struct as_frompath {
* Some cheezy allocation macros.
*/
#define AS_NEW_ARRAY(p, type, n, err) \
(p) = (type *)calloc((n), sizeof (*(p))); \
(p) = (type *)calloc((n), sizeof(*(p))); \
if ((p) == NULL) \
return err; \