mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Remove bogus ; at the end of the if condition in order to unbreak gcc builds
after r270004. MFC after: 4 days X-MFX with: r270004
This commit is contained in:
parent
afe55ca373
commit
d8e198e6b4
1 changed files with 2 additions and 2 deletions
|
|
@ -168,11 +168,11 @@ ATF_TC_BODY(stream, tc)
|
|||
printf("%s", event);
|
||||
|
||||
create_pos = strstr(event, create_pat);
|
||||
if (create_pos != NULL);
|
||||
if (create_pos != NULL)
|
||||
got_create_event = true;
|
||||
|
||||
destroy_pos = strstr(event, destroy_pat);
|
||||
if (destroy_pos != NULL);
|
||||
if (destroy_pos != NULL)
|
||||
got_destroy_event = true;
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue