aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-datetime-format.c
diff options
context:
space:
mode:
authorFridrich Štrba <fridrich.strba@bluewin.ch>2010-03-26 00:05:15 +0800
committerFridrich Štrba <fridrich.strba@bluewin.ch>2010-03-26 00:05:15 +0800
commitb7acebe2154d019b2d3ccf0aa70d9b64c8873a94 (patch)
tree05872fde43e9b21fb5cea8f253106b03afdb2c3e /e-util/e-datetime-format.c
parent2fabf227bb51ea8eefdb56760103f5b338ba1200 (diff)
downloadgsoc2013-evolution-b7acebe2154d019b2d3ccf0aa70d9b64c8873a94.tar
gsoc2013-evolution-b7acebe2154d019b2d3ccf0aa70d9b64c8873a94.tar.gz
gsoc2013-evolution-b7acebe2154d019b2d3ccf0aa70d9b64c8873a94.tar.bz2
gsoc2013-evolution-b7acebe2154d019b2d3ccf0aa70d9b64c8873a94.tar.lz
gsoc2013-evolution-b7acebe2154d019b2d3ccf0aa70d9b64c8873a94.tar.xz
gsoc2013-evolution-b7acebe2154d019b2d3ccf0aa70d9b64c8873a94.tar.zst
gsoc2013-evolution-b7acebe2154d019b2d3ccf0aa70d9b64c8873a94.zip
Avoid warning about redefined localtime_r
Diffstat (limited to 'e-util/e-datetime-format.c')
-rw-r--r--e-util/e-datetime-format.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/e-util/e-datetime-format.c b/e-util/e-datetime-format.c
index ec3e4fb8fe..0595d58add 100644
--- a/e-util/e-datetime-format.c
+++ b/e-util/e-datetime-format.c
@@ -29,6 +29,9 @@
#define KEYS_GROUPNAME "formats"
#ifdef G_OS_WIN32
+#ifdef localtime_r
+#undef localtime_r
+#endif
/* The localtime() in Microsoft's C library *is* thread-safe */
#define localtime_r(timep, result) (localtime (timep) ? memcpy ((result), localtime (timep), sizeof (*(result))) : 0)
#endif