r26539: Remove unnecessary statics.
[gd/samba-autobuild/.git] / source4 / lib / replace / timegm.c
index 395c684e11700431ed7a2eafec5a2dd307fb28c3..86f360bd3c53a7fa7c0a27944a3b17b9609872c3 100644 (file)
@@ -46,7 +46,7 @@ static int is_leap(unsigned y)
 
 time_t rep_timegm(struct tm *tm)
 {
-       static const unsigned ndays[2][12] ={
+       const unsigned ndays[2][12] ={
                {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},
                {31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}};
        time_t res = 0;