about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJulien <96022417+Oneirical@users.noreply.github.com>2024-05-11 16:59:29 -0400
committerGitHub <noreply@github.com>2024-05-11 16:59:29 -0400
commit10c358f11189de4f639106253c8178dbbfa3f68e (patch)
tree2cd39887236f95c35b65596748349778c8034b83
parente37d2989c1d1f1600f3769ce6f46e77493169b8d (diff)
downloadrust-10c358f11189de4f639106253c8178dbbfa3f68e.tar.gz
rust-10c358f11189de4f639106253c8178dbbfa3f68e.zip
Make tidy happy
-rw-r--r--tests/run-make/c-link-to-rust-va-list-fn/rmake.rs6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/run-make/c-link-to-rust-va-list-fn/rmake.rs b/tests/run-make/c-link-to-rust-va-list-fn/rmake.rs
index 36c31f973c6..489a637c445 100644
--- a/tests/run-make/c-link-to-rust-va-list-fn/rmake.rs
+++ b/tests/run-make/c-link-to-rust-va-list-fn/rmake.rs
@@ -8,11 +8,9 @@
 use run_make_support::{cc, extra_c_flags, run, rustc, static_lib};
 
 fn main() {
-    rustc()
-        .input("checkrust.rs")
+    rustc().input("checkrust.rs")
         .run();
-    cc()
-        .input("test.c")
+    cc().input("test.c")
         .input(static_lib("checkrust"))
         .out_exe("test")
         .args(&extra_c_flags())