Avoid compiler warning

* src/timefns.c (Fdecode_time): Use 'UNINIT' to avoid a warning with
gcc 14 and checking enabled.
This commit is contained in:
Pip Cet 2024-08-05 21:58:16 +00:00
parent e7109dfd9c
commit 0822d0c1cd

View file

@ -1555,7 +1555,7 @@ usage: (decode-time &optional TIME ZONE FORM) */)
if HZ != 1 also set TH.ticks. */
time_t time_spec;
Lisp_Object hz;
struct ticks_hz th;
struct ticks_hz th UNINIT;
if (EQ (form, Qt))
{
th = decode_lisp_time (specified_time, CFORM_TICKS_HZ).th;