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:
Bjoern A. Zeeb 2014-08-15 10:01:33 +00:00
parent afe55ca373
commit d8e198e6b4

View File

@ -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;
}