mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2026-04-27 00:19:51 +00:00
[PR #1914] [MERGED] [FIX] Resolve unused variable warnings in ts_tables_epg.c #2708
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/CCExtractor/ccextractor/pull/1914
Author: @VS7686
Created: 12/27/2025
Status: ✅ Merged
Merged: 12/29/2025
Merged by: @cfsmp3
Base:
master← Head:fix-epg-warnings📝 Commits (3)
00d8c9cFix unused variable warnings in ts_tables_epg.cd4a7b1dTrigger CI re-run29c3f4eTrigger CI re-run 2📊 Changes
1 file changed (+1 additions, -3 deletions)
View changed files
📝
src/lib_ccx/ts_tables_epg.c(+1 -3)📄 Description
In raising this pull request, I confirm the following (please check boxes):
My familiarity with the project is as follows (check one):
---### Description
This PR fixes compiler warnings in
src/lib_ccx/ts_tables_epg.crelated to unused variables.The Issue:
The variables
modeandcompression_typewere declared and assigned values from theoffsetarray, but they were never subsequently used in the logic block (lines 98-105). This triggered-Wunused-but-set-variablewarnings during the build.The Fix:
modeandcompression_type.offset += 3;pointer arithmetic to ensure the parsing logic remains correct.Environment:
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.