diff options
| author | Julien <96022417+Oneirical@users.noreply.github.com> | 2024-05-11 16:59:29 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-11 16:59:29 -0400 |
| commit | 10c358f11189de4f639106253c8178dbbfa3f68e (patch) | |
| tree | 2cd39887236f95c35b65596748349778c8034b83 | |
| parent | e37d2989c1d1f1600f3769ce6f46e77493169b8d (diff) | |
| download | rust-10c358f11189de4f639106253c8178dbbfa3f68e.tar.gz rust-10c358f11189de4f639106253c8178dbbfa3f68e.zip | |
Make tidy happy
| -rw-r--r-- | tests/run-make/c-link-to-rust-va-list-fn/rmake.rs | 6 |
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()) |
