1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-17 10:26:15 +00: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:
Bjoern A. Zeeb 2014-08-15 10:01:33 +00:00
parent afe55ca373
commit d8e198e6b4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=270019

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