Skip to content

Commit

Permalink
Fix another signed char issue in FileLineReader
Browse files Browse the repository at this point in the history
  • Loading branch information
mourisl committed Aug 13, 2024
1 parent e26fe17 commit 96b4050
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion FileLineReader.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class FileLineReader
return NULL ;

int len = 0 ;
while ((c = fgetc(fp)) != EOF)
while ((c = fgetc(fp)) != (char)EOF)
{
buffer[len] = c ;
++len ;
Expand Down
2 changes: 1 addition & 1 deletion run-trust4
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use Cwd qw(cwd abs_path) ;
use File::Basename ;
use File::Path qw(make_path) ;

my $version = "v1.1.4-r533" ;
my $version = "v1.1.4-r534" ;

die "TRUST4 $version usage: ./run-trust4 [OPTIONS]:\n".
"Required:\n".
Expand Down

0 comments on commit 96b4050

Please sign in to comment.