diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2013-09-24 22:16:43 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2013-09-26 17:05:59 -0700 |
| commit | 409182de6d74889134209e7fc98174eb8f267170 (patch) | |
| tree | 8f8c542b198cdb323038aa803ff6bff7433bd3bb /src/librustpkg/testsuite | |
| parent | 09a53381974bcf42c0b081cbfcd9f20f1e5d4f04 (diff) | |
Update the compiler to not use printf/printfln
Diffstat (limited to 'src/librustpkg/testsuite')
| -rw-r--r-- | src/librustpkg/testsuite/pass/src/fancy-lib/pkg.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustpkg/testsuite/pass/src/fancy-lib/pkg.rs b/src/librustpkg/testsuite/pass/src/fancy-lib/pkg.rs index 27818dea1a6..db11ffa0cc6 100644 --- a/src/librustpkg/testsuite/pass/src/fancy-lib/pkg.rs +++ b/src/librustpkg/testsuite/pass/src/fancy-lib/pkg.rs @@ -34,7 +34,7 @@ pub fn main() { } if args[2] != ~"install" { - printfln!("Warning: I don't know how to %s", args[2]); + println!("Warning: I don't know how to {}", args[2]); return; } |
