@@ -131,11 +131,11 @@ \ return tm->field; # endif #endif -static int month_to_day_of_year[12] = { +static int monthToDayOfYear[12] = { 0, 31, 31 + 28, 31 + 28 + 31, 31 + 28 + 31 + 30, @@ -259,11 +259,11 @@ (tm.tm_year + 1900) % 400 == 0)) _seconds += 86400; /* Months */ if (tm.tm_mon < 0 || tm.tm_mon > 12) @throw [OFInvalidFormatException exception]; - _seconds += month_to_day_of_year[tm.tm_mon] * 86400; + _seconds += monthToDayOfYear[tm.tm_mon] * 86400; /* Days */ _seconds += (tm.tm_mday - 1) * 86400; /* Hours */ _seconds += tm.tm_hour * 3600; /* Minutes */