hermet pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=024812c1a76286991f292c3191936778ec219ff8

commit 024812c1a76286991f292c3191936778ec219ff8
Author: ChunEon Park <her...@hermet.pe.kr>
Date:   Thu Aug 20 14:25:15 2015 +0900

    evil: fix incorrect function call.
    
    _localtime64_s() requires _time64_t as one argument but here we passes 
time_s.
    Proper api is localtime_s().
---
 src/lib/evil/evil_time.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/evil/evil_time.c b/src/lib/evil/evil_time.c
index 9e6fd5c..6964654 100644
--- a/src/lib/evil/evil_time.c
+++ b/src/lib/evil/evil_time.c
@@ -13,7 +13,7 @@
 struct tm *
 evil_localtime_r(const time_t *timep, struct tm *result)
 {
-   _localtime64_s(result, timep);
+   localtime_s(result, timep);
 
    return result;
 }

-- 


Reply via email to