mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
Use our own struct tm
This commit is contained in:
parent
11c50770d3
commit
b71a5bfc40
1 changed files with 3 additions and 3 deletions
|
@ -2927,9 +2927,9 @@ newDetailInZoneForType(GSTimeZone *zone, TypeInfo *type)
|
|||
static TypeInfo
|
||||
getTypeInfo(NSTimeInterval since, GSTimeZone *zone)
|
||||
{
|
||||
int64_t when = (int64_t)since;
|
||||
struct tm tm;
|
||||
TypeInfo type;
|
||||
int64_t when = (int64_t)since;
|
||||
gstm tm;
|
||||
TypeInfo type;
|
||||
|
||||
if (localsub(zone->sp, &when, 0, &tm) == NULL)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue