aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-08-08 00:19:07 -0700
committerGuy Harris <guy@alum.mit.edu>2014-08-08 07:19:36 +0000
commit74312299f250835960df651c794e15b85a1db625 (patch)
treebd34f501df740cbd47ad5fb840458bf9307f3067 /wsutil
parent39d919b86862015615d98fa40e5d0e61aac4aa05 (diff)
Fix indentation.
Change-Id: I4342ec7723c43f8e12d6187609a1493a61725d31 Reviewed-on: https://code.wireshark.org/review/3492 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'wsutil')
-rw-r--r--wsutil/crc32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/wsutil/crc32.c b/wsutil/crc32.c
index db04a748e5..9abe2ec825 100644
--- a/wsutil/crc32.c
+++ b/wsutil/crc32.c
@@ -362,8 +362,8 @@ crc32_0x0AA725CF_seed(const guint8 *buf, guint len, guint32 seed)
guint crc32;
crc32 = (guint)seed;
- while( len-- != 0 )
- crc32 = crc32_0AA725CF_reverse[(crc32 ^ *buf++) & 0xff] ^ (crc32 >> 8);
+ while( len-- != 0 )
+ crc32 = crc32_0AA725CF_reverse[(crc32 ^ *buf++) & 0xff] ^ (crc32 >> 8);
return (guint32)crc32;
}