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
@ -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 New Issue
Block a user