Skip to content

Commit

Permalink
Merge pull request #57 from skliper/fix56-int-compare-lgtm
Browse files Browse the repository at this point in the history
Fix #56, Squash int comparison warning
  • Loading branch information
yammajamma authored Aug 27, 2020
2 parents a5a5326 + d28f018 commit bb16eb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion elf2cfetbl.c
Original file line number Diff line number Diff line change
Expand Up @@ -929,7 +929,7 @@ int32 ProcessCmdLineOptions(int ArgumentCount, char *Arguments[])
int32 Status = SUCCESS;
bool InputFileSpecified = false;
bool OutputFileSpecified = false;
int16 i = 1;
int i = 1;
char * EndPtr;
uint32 MaxDay;
struct tm FileEpochTm;
Expand Down

0 comments on commit bb16eb1

Please sign in to comment.