aboutsummaryrefslogtreecommitdiff
path: root/src/util/common_logging.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-06-12 19:07:40 +0000
committerChristian Grothoff <christian@grothoff.org>2012-06-12 19:07:40 +0000
commit6c471eeb15e27f8226492b4860a3c2acb94c5f25 (patch)
treea3a9dcba12ee5356c03056c10b7aba5367b2ef34 /src/util/common_logging.c
parent16bcbbea7133fd2265d46bd2ae1dc70e8c9ba96f (diff)
downloadgnunet-6c471eeb15e27f8226492b4860a3c2acb94c5f25.tar.gz
gnunet-6c471eeb15e27f8226492b4860a3c2acb94c5f25.zip
-consistently use struct GNUNET_HashCode
Diffstat (limited to 'src/util/common_logging.c')
-rw-r--r--src/util/common_logging.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/common_logging.c b/src/util/common_logging.c
index 2c0fd57a8..82878a02a 100644
--- a/src/util/common_logging.c
+++ b/src/util/common_logging.c
@@ -903,7 +903,7 @@ GNUNET_error_type_to_string (enum GNUNET_ErrorType kind)
903 * @return string form; will be overwritten by next call to GNUNET_h2s. 903 * @return string form; will be overwritten by next call to GNUNET_h2s.
904 */ 904 */
905const char * 905const char *
906GNUNET_h2s (const GNUNET_HashCode * hc) 906GNUNET_h2s (const struct GNUNET_HashCode * hc)
907{ 907{
908 static struct GNUNET_CRYPTO_HashAsciiEncoded ret; 908 static struct GNUNET_CRYPTO_HashAsciiEncoded ret;
909 909
@@ -921,7 +921,7 @@ GNUNET_h2s (const GNUNET_HashCode * hc)
921 * @return string form; will be overwritten by next call to GNUNET_h2s_full. 921 * @return string form; will be overwritten by next call to GNUNET_h2s_full.
922 */ 922 */
923const char * 923const char *
924GNUNET_h2s_full (const GNUNET_HashCode * hc) 924GNUNET_h2s_full (const struct GNUNET_HashCode * hc)
925{ 925{
926 static struct GNUNET_CRYPTO_HashAsciiEncoded ret; 926 static struct GNUNET_CRYPTO_HashAsciiEncoded ret;
927 927