aboutsummaryrefslogtreecommitdiff
path: root/src/hash.cpp
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2017-01-14 21:45:32 +0100
committerpracticalswift <practicalswift@users.noreply.github.com>2017-01-14 21:45:32 +0100
commit8fc698935f01a9f0675e509761fb69be8d43e80a (patch)
tree201d7116d80819c3fc4009487c73629e2e2a72db /src/hash.cpp
parent02e5308c1b9f3771bbe49bc5036215fa2bd66aa9 (diff)
downloadbitcoin-8fc698935f01a9f0675e509761fb69be8d43e80a.tar.xz
Remove redundant semicolons
Diffstat (limited to 'src/hash.cpp')
-rw-r--r--src/hash.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hash.cpp b/src/hash.cpp
index a399ca9252..a14a2386a2 100644
--- a/src/hash.cpp
+++ b/src/hash.cpp
@@ -57,7 +57,7 @@ unsigned int MurmurHash3(unsigned int nHashSeed, const std::vector<unsigned char
k1 = ROTL32(k1, 15);
k1 *= c2;
h1 ^= k1;
- };
+ }
}
//----------