aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChloe Kudryavtsev <code@toast.bunkerlabs.net>2023-05-30 23:52:16 +0200
committerChloe Kudryavtsev <code@toast.bunkerlabs.net>2023-05-30 23:52:16 +0200
commita5e6f4341ba3b6c62724a128757addb44169fa3c (patch)
treec00a381db0de618c2e2b2bf8e64a2bf27efe8f64 /src
parentadd notes, need to go do work now (diff)
remove warning from localtime
Diffstat (limited to 'src')
-rw-r--r--src/time.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/time.c b/src/time.c
index 2993030..eaa7cad 100644
--- a/src/time.c
+++ b/src/time.c
@@ -63,7 +63,7 @@ JANET_FN(jd_gmtime,
JANET_FN(jd_localtime,
"(localtime (time))",
- "WARNING: do not use this unless it's for final display.") {
+ "") {
janet_fixarity(argc, 1);
time_t *time = jd_gettime(argv, 0);
struct tm *tm = localtime(time);