Author: Andreas Tille <tille@debian.org>
Last-Update: 2025-02-04
Bug-Debian: https://bugs.debian.org/1075227
Description: Fix gcc-14 build issue

--- a/util/dvbdate/dvbdate.c
+++ b/util/dvbdate/dvbdate.c
@@ -309,7 +309,7 @@ int atsc_scan_date(time_t *rx_time, unsi
  */
 int set_time(time_t * new_time)
 {
-	struct timespec ts = { .tv_sec = new_time };
+	struct timespec ts = { .tv_sec = *new_time };
 
 	if (clock_settime(CLOCK_REALTIME, &ts)) {
 		perror("Unable to set time");
--- a/util/alevt/lang.c
+++ b/util/alevt/lang.c
@@ -6,6 +6,8 @@
 
 int latin1 = -1;
 
+int is_koi(int c);
+int is_greek(int c);
 
 static u8 lang_char[256];
 static u8 lang_chars[1+8+8][16] =
