]> git.codecow.com Git - Monocypher.git/commitdiff
Indent #ifdef
authorLoup Vaillant <loup@loup-vaillant.fr>
Fri, 20 Apr 2018 22:34:50 +0000 (00:34 +0200)
committerLoup Vaillant <loup@loup-vaillant.fr>
Fri, 20 Apr 2018 22:34:50 +0000 (00:34 +0200)
src/monocypher.h

index 8c335270744b48e3f751ea7858aac9e034ca1d54..ed8a0ad86810fcf513a35a76294961a0edd7f700 100644 (file)
@@ -48,10 +48,10 @@ typedef struct {
 
 // Signatures (EdDSA)
 #ifdef ED25519_SHA512
-#include "sha512.h"
-typedef crypto_sha512_ctx crypto_hash_ctx;
+    #include "sha512.h"
+    typedef crypto_sha512_ctx crypto_hash_ctx;
 #else
-typedef crypto_blake2b_ctx crypto_hash_ctx;
+    typedef crypto_blake2b_ctx crypto_hash_ctx;
 #endif
 typedef struct {
     crypto_hash_ctx hash;