diff options
author | June McEnroe <june@causal.agency> | 2018-07-24 17:00:43 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-07-24 17:00:43 -0400 |
commit | 5bb8bc772bd5434b9c4f6c92999e41cf7a27c264 (patch) | |
tree | da1d4ae5a24df3742d78daa7a4529e5c4e8a051f /meta.c | |
parent | Do not set non-blocking on client sockets (diff) | |
download | torus-5bb8bc772bd5434b9c4f6c92999e41cf7a27c264.tar.gz torus-5bb8bc772bd5434b9c4f6c92999e41cf7a27c264.zip |
Print time_t with %jd in meta
On 32-bit NetBSD, time_t is 'long long int' rather than 'long int'. This works everywhere.
Diffstat (limited to '')
-rw-r--r-- | meta.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta.c b/meta.c index 2ab906f..c913cf7 100644 --- a/meta.c +++ b/meta.c @@ -29,7 +29,7 @@ int main() { if (!count) return EX_OK; printf( - "%d,%d,%ld,%u,%ld,%u,%ld\n", + "%d,%d,%jd,%u,%jd,%u,%jd\n", i % TILE_COLS, i / TILE_COLS, tile.createTime, |