Skip to content
This repository has been archived by the owner on Dec 29, 2020. It is now read-only.

Commit

Permalink
Fix missing ;
Browse files Browse the repository at this point in the history
Remove unused variable x
  • Loading branch information
ahoying committed Dec 8, 2015
1 parent ffdc278 commit b60147e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions fw1-loggrabber.c
Original file line number Diff line number Diff line change
Expand Up @@ -938,7 +938,6 @@ read_fw1_logfile_record (OpsecSession * pSession, lea_record * pRec,
{
char *szAttrib;
int i;
int x;
unsigned long ul;
unsigned short us;
char tmpdata[21];
Expand Down Expand Up @@ -973,7 +972,7 @@ read_fw1_logfile_record (OpsecSession * pSession, lea_record * pRec,
*/
if (ignore_attr_id_count)
{
ignore = find_in_int_array(ignore_attr_id_array, ignore_attr_id_count, pRec->fields[i].lea_attr_id)
ignore = find_in_int_array(ignore_attr_id_array, ignore_attr_id_count, pRec->fields[i].lea_attr_id);

if (ignore)
{
Expand Down

0 comments on commit b60147e

Please sign in to comment.