diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-10-04 21:03:13 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-10-04 21:03:13 -0700 |
commit | a39deac00add15532b15827c80601f87738cb405 (patch) | |
tree | 1b897092843346619f6462aaa6810ed561c86857 /hash.c | |
parent | b2d0f04a50f1444f9d62d11636a28c89951f0f40 (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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |