13
0

add missing semicolon

This commit is contained in:
Robin Gareus 2015-10-06 18:53:30 +02:00
parent 2af78143c1
commit 83d8db3925

View File

@ -816,7 +816,7 @@ static std::string dll_info (std::string path) {
}
if (6 != read (fd, buf, 6)) {
rv = _("- cannot read dll PE header");
goto errorout
goto errorout;
}
if (buf[0] != 'P' && buf[1] != 'E') {