aboutsummaryrefslogtreecommitdiffstats
path: root/oldXMenu/XCrAssoc.c
diff options
context:
space:
mode:
authorJuanma Barranquero <[email protected]>2003-02-04 14:56:31 +0000
committerJuanma Barranquero <[email protected]>2003-02-04 14:56:31 +0000
commit177c0ea74342272645959b82cf219faa0b3dba16 (patch)
tree44e22b210a9904eab25a66d12e708804b671df75 /oldXMenu/XCrAssoc.c
parentdb95369be096960245dd38678f68464627698678 (diff)
Trailing whitespace deleted.
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) {