diff options
author | durner <durner@140774ce-b5e7-0310-ab8b-a85725594a96> | 2010-10-08 15:58:28 +0000 |
---|---|---|
committer | durner <durner@140774ce-b5e7-0310-ab8b-a85725594a96> | 2010-10-08 15:58:28 +0000 |
commit | a9c52dcb3729abe4068ee7851cfe70a61a91b0ee (patch) | |
tree | a7a5820bc55c40614391aa7031a6d7a61bfa2f75 /src/util/common_logging.c | |
parent | 3d6e20cae450dcae92493ef76c0ee0552d60a28a (diff) |
fix warning
git-svn-id: https://gnunet.org/svn/gnunet@13239 140774ce-b5e7-0310-ab8b-a85725594a96
Diffstat (limited to 'src/util/common_logging.c')
-rw-r--r-- | src/util/common_logging.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/common_logging.c b/src/util/common_logging.c index e056009861..b175016901 100644 --- a/src/util/common_logging.c +++ b/src/util/common_logging.c @@ -591,7 +591,7 @@ void __attribute__ ((constructor)) GNUNET_util_cl_init () { GNUNET_stderr = stderr; #ifdef MINGW - InitWinEnv (NULL); + GNInitWinEnv (NULL); #endif } @@ -602,7 +602,7 @@ void __attribute__ ((constructor)) GNUNET_util_cl_init () void __attribute__ ((destructor)) GNUNET_util_cl_fini () { #ifdef MINGW - ShutdownWinEnv (); + GNShutdownWinEnv (); #endif } |