From 3e81d4c4debbfb1b6eb2eaf42a0eaa793bba578e Mon Sep 17 00:00:00 2001 From: Jon Trulson Date: Sat, 7 Aug 2021 18:32:33 -0600 Subject: [PATCH] csa: specify correct time_t type in _DtCm_print_tick() prototype --- cde/lib/csa/debug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cde/lib/csa/debug.h b/cde/lib/csa/debug.h index c42385819..cd16f3b14 100644 --- a/cde/lib/csa/debug.h +++ b/cde/lib/csa/debug.h @@ -39,7 +39,7 @@ #define DP(a) #endif /* CM_DEBUG */ -extern void _DtCm_print_tick(long); +extern void _DtCm_print_tick(time_t t); extern void _DtCm_print_errmsg(const char *);