summaryrefslogtreecommitdiff
path: root/omapip/hash.c
diff options
context:
space:
mode:
Diffstat (limited to 'omapip/hash.c')
-rw-r--r--omapip/hash.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/omapip/hash.c b/omapip/hash.c
index 9ca0a013..09a44167 100644
--- a/omapip/hash.c
+++ b/omapip/hash.c
@@ -149,7 +149,7 @@ void relinquish_hash_bucket_hunks ()
if (!n)
p = &c -> next;
}
-
+
for (c = hash_bucket_hunks; c; c = n) {
n = c -> next;
if (c -> len != 126) {
@@ -300,7 +300,7 @@ do_id_hash(const void *name, unsigned len, unsigned size)
* The switch handles our starting conditions, then we hash the
* remaining bytes in groups of 3
*/
-
+
switch (len % 3) {
case 0:
break;
@@ -386,7 +386,7 @@ hash_report(struct hash_table *table)
maxlen > 2147483647)
return (unsigned char *) "Report out of range for display.";
- sprintf((char *)retbuf,
+ sprintf((char *)retbuf,
"Contents/Size (%%): %u/%u (%u%%). Min/max: %u/%u",
contents, table->hash_count, pct, minlen, maxlen);
@@ -536,7 +536,7 @@ int casecmp (const void *v1, const void *v2, size_t len)
size_t i;
const unsigned char *s = v1;
const unsigned char *t = v2;
-
+
for (i = 0; i < len; i++)
{
int c1, c2;