Skip to content

Commit e0fd9f2

Browse files
committed
Fix clang style check
1 parent cd9a7b7 commit e0fd9f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ansi-c/c_typecheck_expr.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2847,8 +2847,8 @@ exprt c_typecheck_baset::do_special_functions(
28472847
if(expr.arguments().size() != 1)
28482848
{
28492849
error().source_location = expr.source_location();
2850-
error() << identifier << " expects one argument, " <<
2851-
expr.arguments().size() << " were provided" << eom;
2850+
error() << identifier << " expects one argument, "
2851+
<< expr.arguments().size() << " were provided" << eom;
28522852
throw 0;
28532853
}
28542854
// Replace expr with giant boolean that checks all the values

0 commit comments

Comments
 (0)