diff options
author | June McEnroe <june@causal.agency> | 2018-03-05 12:54:26 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-03-05 12:54:26 -0500 |
commit | 79ab120ad31ed74a2a3221d14b7472703296a921 (patch) | |
tree | ae575f7e84a2602b85719a35f016b087e9144a63 /meta.c | |
parent | Pack message type enums (diff) | |
download | torus-79ab120ad31ed74a2a3221d14b7472703296a921.tar.gz torus-79ab120ad31ed74a2a3221d14b7472703296a921.zip |
Rename Tile timestamps {create,modify,access}Time
Diffstat (limited to '')
-rw-r--r-- | meta.c | 6 |
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 ); } } |