aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMichael S. Tsirkin <mst@redhat.com>2009-10-02 17:59:10 +0000
committerBlue Swirl <blauwirbel@gmail.com>2009-10-02 17:59:10 +0000
commit58458bb47fc297894ba0a1a4a729442a5cf2df04 (patch)
treeccaacb984cce8b071005cbc9aba1633b859c839b /tests
parentde2ca4fbb4cc1fdb31a9a1136b9b6bf9d045dd41 (diff)
tests: missing ; in if 0
Fix missing ; in commented out code Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/sha1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/sha1.c b/tests/sha1.c
index 2557344dff..3a76555825 100644
--- a/tests/sha1.c
+++ b/tests/sha1.c
@@ -190,7 +190,7 @@ unsigned char c;
int j;
for (j = 0; j < 4; t >>= 8, j++)
- *--fcp = (unsigned char) t
+ *--fcp = (unsigned char) t;
}
#else
for (i = 0; i < 8; i++) {