diff options
Diffstat (limited to 'src/modules/utils/sha1.cpp')
-rw-r--r-- | src/modules/utils/sha1.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/utils/sha1.cpp b/src/modules/utils/sha1.cpp index 3d71239bab..2fede54718 100644 --- a/src/modules/utils/sha1.cpp +++ b/src/modules/utils/sha1.cpp @@ -162,9 +162,9 @@ static void shaHashBlock(mir_sha1_ctx *ctx) { INT_PTR GetSHA1Interface(WPARAM, LPARAM lParam)
{
struct SHA1_INTERFACE *sha1i = (struct SHA1_INTERFACE*) lParam;
- if ( sha1i == NULL )
+ if (sha1i == NULL)
return 1;
- if ( sha1i->cbSize != sizeof( struct SHA1_INTERFACE ))
+ if (sha1i->cbSize != sizeof(struct SHA1_INTERFACE))
return 1;
sha1i->sha1_init = shaInit;
|