diff options
| author | Brian Anderson <banderson@mozilla.com> | 2013-04-24 21:33:03 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2013-04-25 15:10:19 -0700 |
| commit | abc49fdfae0b80acfa010fd6151ff8ffc229c03b (patch) | |
| tree | acffb9ea46be08712a85269345843ad5b20cdbd7 /src | |
| parent | 28ab152832450a69d36c027f3a7177faf8811f7c (diff) | |
| download | rust-abc49fdfae0b80acfa010fd6151ff8ffc229c03b.tar.gz rust-abc49fdfae0b80acfa010fd6151ff8ffc229c03b.zip | |
rt: abort doesn't take an argument
Diffstat (limited to 'src')
| -rw-r--r-- | src/rt/rust_builtin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rt/rust_builtin.cpp b/src/rt/rust_builtin.cpp index 2097d8dd933..8b7b89680fc 100644 --- a/src/rt/rust_builtin.cpp +++ b/src/rt/rust_builtin.cpp @@ -909,7 +909,7 @@ rust_begin_unwind(uintptr_t token) { #ifndef __WIN32__ throw token; #else - abort("failing on win32"); + abort(); #endif } |
