format
diff --git a/test/example/c-api-kitchen-sink.c b/test/example/c-api-kitchen-sink.c index 99c3394..9ae6432 100644 --- a/test/example/c-api-kitchen-sink.c +++ b/test/example/c-api-kitchen-sink.c
@@ -1436,17 +1436,15 @@ BinaryenFeatures features = BinaryenFeatureAll(); BinaryenModuleSetFeatures(module, features); - BinaryenExpressionRef call = - BinaryenCallRef( - module, - // Give the call an unreachable target as a workaround for not being able - // to define a Signature type in the C API yet. - BinaryenUnreachable(module), - NULL, - 0, - 0, - BinaryenTypeNone() - ); + BinaryenExpressionRef call = BinaryenCallRef( + module, + // Give the call an unreachable target as a workaround for not being able + // to define a Signature type in the C API yet. + BinaryenUnreachable(module), + NULL, + 0, + 0, + BinaryenTypeNone()); BinaryenFunctionRef caller = BinaryenAddFunction( module, "foo", BinaryenTypeNone(), BinaryenTypeNone(), NULL, 0, call);