about summary refs log tree commit diff homepage
path: root/meta.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-03-05 12:54:26 -0500
committerJune McEnroe <june@causal.agency>2018-03-05 12:54:26 -0500
commit79ab120ad31ed74a2a3221d14b7472703296a921 (patch)
treeae575f7e84a2602b85719a35f016b087e9144a63 /meta.c
parentPack message type enums (diff)
downloadtorus-79ab120ad31ed74a2a3221d14b7472703296a921.tar.gz
torus-79ab120ad31ed74a2a3221d14b7472703296a921.zip
Rename Tile timestamps {create,modify,access}Time
Diffstat (limited to 'meta.c')
-rw-r--r--meta.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta.c b/meta.c
index 534559c..8e3b6a3 100644
--- a/meta.c
+++ b/meta.c
@@ -33,11 +33,11 @@ int main() {
             "%d,%d,%ld,%u,%ld,%u,%ld\n",
             i % TILE_COLS,
             i / TILE_COLS,
-            tile.create,
+            tile.createTime,
             tile.modifyCount,
-            tile.modify,
+            tile.modifyTime,
             tile.accessCount,
-            tile.access
+            tile.accessTime
         );
     }
 }