summaryrefslogtreecommitdiffstats
path: root/md5.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-10-07 08:15:01 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-10-07 08:15:01 +0000
commit1dde52eb2bcedeced2ba3b13d0a07b3d591fc7c2 (patch)
treef653cba159a2e0f729d70ec026272882cd8ca123 /md5.h
parentReleasing debian version 1.24-2. (diff)
downloadlziprecover-1dde52eb2bcedeced2ba3b13d0a07b3d591fc7c2.tar.xz
lziprecover-1dde52eb2bcedeced2ba3b13d0a07b3d591fc7c2.zip
Merging upstream version 1.25~pre1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'md5.h')
-rw-r--r--md5.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/md5.h b/md5.h
index 9f3b598..0cafdbd 100644
--- a/md5.h
+++ b/md5.h
@@ -23,7 +23,7 @@ struct md5_type
uint8_t data[16]; // 128-bit md5 digest
bool operator==( const md5_type & d ) const
- { return ( std::memcmp( data, d.data, 16 ) == 0 ); }
+ { return std::memcmp( data, d.data, 16 ) == 0; }
bool operator!=( const md5_type & d ) const { return !( *this == d ); }
// const uint8_t & operator[]( const int i ) const { return data[i]; }
uint8_t & operator[]( const int i ) { return data[i]; }