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:
parent
e7109dfd9c
commit
0822d0c1cd
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue