Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/lib_ccx/ts_functions.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ struct EPG_rating
struct EPG_event
{
uint32_t id;
char start_time_string[21]; //"YYYYMMDDHHMMSS +0000" = 20 chars
char end_time_string[21];
char start_time_string[32]; // Increased to prevent truncation warnings with large years
char end_time_string[32];
uint8_t running_status;
uint8_t free_ca_mode;
char ISO_639_language_code[4];
Expand Down
Loading