diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-10-07 08:15:01 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-10-07 08:15:01 +0000 |
commit | 1dde52eb2bcedeced2ba3b13d0a07b3d591fc7c2 (patch) | |
tree | f653cba159a2e0f729d70ec026272882cd8ca123 /md5.h | |
parent | Releasing debian version 1.24-2. (diff) | |
download | lziprecover-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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]; } |