aboutsummaryrefslogtreecommitdiffstats
path: root/oldXMenu/XCrAssoc.c
diff options
context:
space:
mode:
Diffstat (limited to 'oldXMenu/XCrAssoc.c')
-rw-r--r--oldXMenu/XCrAssoc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/oldXMenu/XCrAssoc.c b/oldXMenu/XCrAssoc.c
index 864ed9d4f1..fae6defea0 100644
--- a/oldXMenu/XCrAssoc.c
+++ b/oldXMenu/XCrAssoc.c
@@ -37,14 +37,14 @@ XAssocTable *XCreateAssocTable(size)
register XAssocTable *table; /* XAssocTable to be initialized. */
register XAssoc *buckets; /* Pointer to the first bucket in */
/* the bucket array. */
-
+
/* Malloc the XAssocTable. */
if ((table = (XAssocTable *)malloc(sizeof(XAssocTable))) == NULL) {
/* malloc call failed! */
errno = ENOMEM;
return(NULL);
}
-
+
/* calloc the buckets (actually just their headers). */
buckets = (XAssoc *)calloc((unsigned)size, (unsigned)sizeof(XAssoc));
if (buckets == NULL) {