diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2012-09-21 18:44:00 -0700 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2012-09-21 18:44:00 -0700 |
| commit | f3d6c506a4c614dfd7ecf6c119f13107719cc6b1 (patch) | |
| tree | b420d2dbac2959ceadab5027eb1a65bed48b6f99 /src/libsyntax | |
| parent | d48396c986ec1f9b72de9de7879e7f438d83377c (diff) | |
| download | rust-f3d6c506a4c614dfd7ecf6c119f13107719cc6b1.tar.gz rust-f3d6c506a4c614dfd7ecf6c119f13107719cc6b1.zip | |
libsyntax: Fix botched merge
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/print/pprust.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/print/pprust.rs b/src/libsyntax/print/pprust.rs index e99e35b596c..7ec3cb23b7b 100644 --- a/src/libsyntax/print/pprust.rs +++ b/src/libsyntax/print/pprust.rs @@ -2086,7 +2086,7 @@ fn fn_header_info_to_str(opt_sty: Option<ast::self_ty_>, let mut s = visibility_qualified(vis, ~""); match opt_sty { - Some(ast::sty_static) => str::push_str(s, ~"static "), + Some(ast::sty_static) => str::push_str(&mut s, ~"static "), _ => () }; |
