about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2006-02-13T18·00+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2006-02-13T18·00+0000
commite8475bbd5b0c5505bb0536929e89efc8b0d4da5c (patch)
tree264b32b4bc408b7c35df267b4adbc9f2e57d5281
parent2d2e28d02c18668856b7d55fad40cac4f875fa3e (diff)
* Use a union.
-rw-r--r--src/libutil/hash.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libutil/hash.cc b/src/libutil/hash.cc
index 71d4ba67e2..6df75e956e 100644
--- a/src/libutil/hash.cc
+++ b/src/libutil/hash.cc
@@ -14,7 +14,6 @@ extern "C" {
 #include <fcntl.h>
 
 
-
 Hash::Hash()
 {
     type = htUnknown;
@@ -198,7 +197,7 @@ bool isHash(const string & s)
 }
 
 
-struct Ctx
+union Ctx
 {
     md5_ctx md5;
     sha_ctx sha1;