libcsa: always use time_t for tick

This commit is contained in:
OBATA Akio
2021-10-12 14:24:41 +09:00
parent 194ae3639f
commit 008bcba766
7 changed files with 21 additions and 21 deletions

View File

@@ -161,8 +161,8 @@ struct Access_Args_3 {
};
struct Range_3 {
long key1; /* lower bound tick */
long key2; /* upper bound tick */
time_t key1; /* lower bound tick */
time_t key2; /* upper bound tick */
struct Range_3 *next;
};