Skip to content

Commit

Permalink
Result of BrFileGetLine is not used
Browse files Browse the repository at this point in the history
  • Loading branch information
madebr committed Jan 16, 2024
1 parent 362e4e5 commit 9dfae83
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/BRSRC13/CORE/FW/datafile.c
Original file line number Diff line number Diff line change
Expand Up @@ -310,8 +310,7 @@ int TextReadLine(br_datafile* df, char** ident, char** data) {
while (1) {
int a;
cp = BrScratchString();
a = BrFileGetLine(cp, 256, df->h);
(void)a;
BrFileGetLine(cp, 256, df->h);
if (BrFileEof(df->h) != 0) {
return 0;
}
Expand Down

0 comments on commit 9dfae83

Please sign in to comment.