diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2010-04-16 06:59:15 +0800 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2010-04-16 07:00:25 +0800 |
commit | 1869e4ebe8d2bfd09110e6a81e9a32f653266aff (patch) | |
tree | 24bdffb7158900c2180561156c2b2277d7618213 /widgets/e-timezone-dialog | |
parent | 7793a363608f4c1c68bff611b8b8fa37e4a14705 (diff) | |
download | gsoc2013-evolution-1869e4ebe8d2bfd09110e6a81e9a32f653266aff.tar.gz gsoc2013-evolution-1869e4ebe8d2bfd09110e6a81e9a32f653266aff.tar.zst gsoc2013-evolution-1869e4ebe8d2bfd09110e6a81e9a32f653266aff.zip |
Remove comments that have no point after pthreads dependency disappeared
Diffstat (limited to 'widgets/e-timezone-dialog')
-rw-r--r-- | widgets/e-timezone-dialog/e-timezone-dialog.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/widgets/e-timezone-dialog/e-timezone-dialog.c b/widgets/e-timezone-dialog/e-timezone-dialog.c index 250cc1d32d..734301ebee 100644 --- a/widgets/e-timezone-dialog/e-timezone-dialog.c +++ b/widgets/e-timezone-dialog/e-timezone-dialog.c @@ -37,11 +37,12 @@ #include "e-timezone-dialog.h" #ifdef G_OS_WIN32 -/* Undef the similar macros from pthread.h, they don't check if - * gmtime() and localtime() return NULL. - */ +#ifdef gmtime_r #undef gmtime_r +#endif +#ifdef localtime_r #undef localtime_r +#endif /* The gmtime() and localtime() in Microsoft's C library are MT-safe */ #define gmtime_r(tp,tmp) (gmtime(tp)?(*(tmp)=*gmtime(tp),(tmp)):0) |