]> gitweb.factorcode.org Git - factor.git/commitdiff
unix.time: better struct slot names for timezone.
authorJohn Benediktsson <mrjbq7@gmail.com>
Fri, 11 Dec 2020 07:11:50 +0000 (23:11 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Fri, 11 Dec 2020 07:11:50 +0000 (23:11 -0800)
basis/unix/time/time.factor

index f0156ffa536b74d0be9148a49bf81d5e02d7952d..ca89cb36c0183c91ba4a226cd0c0a29dc3101bad 100644 (file)
@@ -23,8 +23,8 @@ STRUCT: timespec
     ] unless-zero ;
 
 STRUCT: timezone
-    { tz_minuteswest int }
-    { tz_dsttime int } ;
+    { minuteswest int }
+    { dsttime int } ;
 
 STRUCT: tm
     { sec int }