summaryrefslogtreecommitdiff
path: root/hash.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2011-10-04 21:03:13 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2011-10-04 21:03:13 -0700
commita39deac00add15532b15827c80601f87738cb405 (patch)
tree1b897092843346619f6462aaa6810ed561c86857 /hash.c
parentb2d0f04a50f1444f9d62d11636a28c89951f0f40 (diff)
Strip trailing whitespace
Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}' git diff -w & git diff -b show no diffs from this change Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hash.c b/hash.c
index 94ef2ac..135380b 100644
--- a/hash.c
+++ b/hash.c
@@ -173,7 +173,7 @@ hashArray(HashTablePtr table, int value_first)
{
int i, j, n;
HashBucketPtr *dst;
-
+
n = hashElements(table);
dst = malloc((n + 1) * sizeof(HashBucketPtr));
if(dst == NULL)