aboutsummaryrefslogtreecommitdiff
path: root/src/util/common_logging.c
diff options
context:
space:
mode:
authorNils Durner <durner@gnunet.org>2010-10-08 15:58:28 +0000
committerNils Durner <durner@gnunet.org>2010-10-08 15:58:28 +0000
commit84856f94d68830caf56018bb2e17621f9eab2fe2 (patch)
treea7a5820bc55c40614391aa7031a6d7a61bfa2f75 /src/util/common_logging.c
parent9b2054a6caa48e24c98e42436e53b1d091c6e7bc (diff)
downloadgnunet-84856f94d68830caf56018bb2e17621f9eab2fe2.tar.gz
gnunet-84856f94d68830caf56018bb2e17621f9eab2fe2.zip
fix warning
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 e05600986..b17501690 100644
--- a/src/util/common_logging.c
+++ b/src/util/common_logging.c
@@ -591,7 +591,7 @@ void __attribute__ ((constructor)) GNUNET_util_cl_init ()
591{ 591{
592 GNUNET_stderr = stderr; 592 GNUNET_stderr = stderr;
593#ifdef MINGW 593#ifdef MINGW
594 InitWinEnv (NULL); 594 GNInitWinEnv (NULL);
595#endif 595#endif
596} 596}
597 597
@@ -602,7 +602,7 @@ void __attribute__ ((constructor)) GNUNET_util_cl_init ()
602void __attribute__ ((destructor)) GNUNET_util_cl_fini () 602void __attribute__ ((destructor)) GNUNET_util_cl_fini ()
603{ 603{
604#ifdef MINGW 604#ifdef MINGW
605 ShutdownWinEnv (); 605 GNShutdownWinEnv ();
606#endif 606#endif
607} 607}
608 608