aboutsummaryrefslogtreecommitdiff
path: root/src/util/crypto_hash.c
diff options
context:
space:
mode:
authoranryko <a.shvenke@gmail.com>2018-01-07 18:30:35 +0100
committeranryko <a.shvenke@gmail.com>2018-01-07 18:30:35 +0100
commitc5e402ace9dff0bb5b27ebc8cc553175fbeceb68 (patch)
tree735b964a7464030098d83b4305974e0768da3906 /src/util/crypto_hash.c
parent547d531bb3088bf00a0ae5777fa09c7893b7b370 (diff)
downloadgnunet-c5e402ace9dff0bb5b27ebc8cc553175fbeceb68.tar.gz
gnunet-c5e402ace9dff0bb5b27ebc8cc553175fbeceb68.zip
Style fixes (mostly tabs to spaces).
Diffstat (limited to 'src/util/crypto_hash.c')
-rw-r--r--src/util/crypto_hash.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/util/crypto_hash.c b/src/util/crypto_hash.c
index 20c7ca7ff..cce9cf82a 100644
--- a/src/util/crypto_hash.c
+++ b/src/util/crypto_hash.c
@@ -69,9 +69,9 @@ GNUNET_CRYPTO_hash_to_enc (const struct GNUNET_HashCode *block,
69 char *np; 69 char *np;
70 70
71 np = GNUNET_STRINGS_data_to_string ((const unsigned char *) block, 71 np = GNUNET_STRINGS_data_to_string ((const unsigned char *) block,
72 sizeof (struct GNUNET_HashCode), 72 sizeof (struct GNUNET_HashCode),
73 (char*) result, 73 (char *) result,
74 sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded) - 1); 74 sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded) - 1);
75 GNUNET_assert (NULL != np); 75 GNUNET_assert (NULL != np);
76 *np = '\0'; 76 *np = '\0';
77} 77}