about summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-07-24 17:00:43 -0400
committerJune McEnroe <june@causal.agency>2018-07-24 17:00:43 -0400
commit5bb8bc772bd5434b9c4f6c92999e41cf7a27c264 (patch)
treeda1d4ae5a24df3742d78daa7a4529e5c4e8a051f
parentDo not set non-blocking on client sockets (diff)
downloadtorus-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.c2
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,
ogmsg'> This ordering of rules feels much cleaner. 2020-12-29Clean up hilex code somewhatJune McEnroe 2020-12-29Match lex/yacc %% %{ %} lines as MacroJune McEnroe 2020-12-29Match top-level C definitions as IdentifierTagJune McEnroe 2020-12-29Match C type declarations as IdentifierTagJune McEnroe 2020-12-29Match function-like macro definitions as IdentifierTagJune McEnroe 2020-12-29Reconfigure C macro start conditionsJune McEnroe 2020-12-29Document HTML class namesJune McEnroe 2020-12-29Rename Tag class to IdentifierTagJune McEnroe 2020-12-29Change HTML class from hi to hilexJune McEnroe You can tell I was just copying the HTML code huh. 2020-12-29Add hilex HTML outputJune McEnroe