Skip to content

Commit e7a8987

Browse files
committed
---
yaml --- r: 103421 b: refs/heads/auto c: 79e6ab5 h: refs/heads/master i: 103419: 558f27b v: v3
1 parent f12bc61 commit e7a8987

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
1313
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
1414
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1515
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
16-
refs/heads/auto: d89074c8ae11d52b3b92d73bc684f5b964a05cf5
16+
refs/heads/auto: 79e6ab54d13b8a5b8c17093186c39e493784bdc6
1717
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
1818
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
1919
refs/tags/0.1: b19db808c2793fe2976759b85a355c3ad8c8b336

branches/auto/src/libnative/io/process.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ fn spawn_process_os(config: p::ProcessConfig,
470470
Err(e) => {
471471
assert!(e.kind == io::BrokenPipe ||
472472
e.kind == io::EndOfFile,
473-
"unexpected error: {:?}", e);
473+
"unexpected error: {}", e);
474474
Ok(SpawnProcessResult {
475475
pid: pid,
476476
handle: ptr::null()
@@ -744,7 +744,7 @@ fn waitpid(pid: pid_t) -> p::ProcessExit {
744744

745745
let mut status = 0 as c_int;
746746
match retry(|| unsafe { wait::waitpid(pid, &mut status, 0) }) {
747-
-1 => fail!("unknown waitpid error: {:?}", super::last_error()),
747+
-1 => fail!("unknown waitpid error: {}", super::last_error()),
748748
_ => {
749749
if imp::WIFEXITED(status) {
750750
p::ExitStatus(imp::WEXITSTATUS(status) as int)

branches/auto/src/libstd/num/strconv.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -532,19 +532,19 @@ pub fn from_str_bytes_common<T:NumCast+Zero+One+Eq+Ord+Div<T,T>+
532532
) -> Option<T> {
533533
match exponent {
534534
ExpDec if radix >= DIGIT_E_RADIX // decimal exponent 'e'
535-
=> fail!("from_str_bytes_common: radix {:?} incompatible with \
535+
=> fail!("from_str_bytes_common: radix {} incompatible with \
536536
use of 'e' as decimal exponent", radix),
537537
ExpBin if radix >= DIGIT_P_RADIX // binary exponent 'p'
538-
=> fail!("from_str_bytes_common: radix {:?} incompatible with \
538+
=> fail!("from_str_bytes_common: radix {} incompatible with \
539539
use of 'p' as binary exponent", radix),
540540
_ if special && radix >= DIGIT_I_RADIX // first digit of 'inf'
541-
=> fail!("from_str_bytes_common: radix {:?} incompatible with \
541+
=> fail!("from_str_bytes_common: radix {} incompatible with \
542542
special values 'inf' and 'NaN'", radix),
543543
_ if (radix as int) < 2
544-
=> fail!("from_str_bytes_common: radix {:?} to low, \
544+
=> fail!("from_str_bytes_common: radix {} to low, \
545545
must lie in the range [2, 36]", radix),
546546
_ if (radix as int) > 36
547-
=> fail!("from_str_bytes_common: radix {:?} to high, \
547+
=> fail!("from_str_bytes_common: radix {} to high, \
548548
must lie in the range [2, 36]", radix),
549549
_ => ()
550550
}

0 commit comments

Comments
 (0)