Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
show_date_relative(): drop unused "tz" parameter
[gitweb.git]
/
t
/
helper
/
test-date.c
diff --git
a/t/helper/test-date.c
b/t/helper/test-date.c
index a0837371aba17956331ddcdb04847c6c9edeefd2..aac4d542c2936bf90f5ef9c0f27ff347aaf8b660 100644
(file)
--- a/
t/helper/test-date.c
+++ b/
t/helper/test-date.c
@@
-16,7
+16,7
@@
static void show_relative_dates(const char **argv, struct timeval *now)
for (; *argv; argv++) {
time_t t = atoi(*argv);
- show_date_relative(t,
0,
now, &buf);
+ show_date_relative(t, now, &buf);
printf("%s -> %s\n", *argv, buf.buf);
}
strbuf_release(&buf);