Skip to content

Commit 9aaee73

Browse files
committed
---
yaml --- r: 125439 b: refs/heads/master c: e99fc20 h: refs/heads/master i: 125437: c74b478 125435: 5bf4624 125431: 637805d 125423: a088fb9 125407: 53505e3 125375: a0d6ce1 125311: aea9240 125183: 8894b9e 124927: f1baf7a v: v3
1 parent 7114c47 commit 9aaee73

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 2e2f53fad210543be39f6997991abcd403533676
2+
refs/heads/master: e99fc20f9595590597e09795de5bfa3d361517a9
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 9fc8394d3bce22ab483f98842434c84c396212ae
55
refs/heads/try: e5e0db5bc45aa2de6887fbf51dec013ca5c025c6

trunk/src/libstd/rt/backtrace.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -465,13 +465,13 @@ mod imp {
465465
// be in "permanent memory", so we copy it to a static and then use the
466466
// static as the pointer.
467467
//
468-
// FIXME: We also call self_exe_name() on DragonFly BSD. I haven't
468+
// FIXME: We also call self_exe_name() on DragonFly BSD. I haven't
469469
// tested if this is required or not.
470470
unsafe fn init_state() -> *mut backtrace_state {
471471
static mut STATE: *mut backtrace_state = 0 as *mut backtrace_state;
472472
static mut LAST_FILENAME: [libc::c_char, ..256] = [0, ..256];
473473
if !STATE.is_null() { return STATE }
474-
let selfname = if cfg!(target_os = "freebsd") ||
474+
let selfname = if cfg!(target_os = "freebsd") ||
475475
cfg!(target_os = "dragonfly") {
476476
os::self_exe_name()
477477
} else {

trunk/src/libsyntax/abi.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use std::fmt;
1212

1313
#[deriving(PartialEq)]
14-
pub enum Os { OsWin32, OsMacos, OsLinux, OsAndroid, OsFreebsd, OsiOS,
14+
pub enum Os { OsWin32, OsMacos, OsLinux, OsAndroid, OsFreebsd, OsiOS,
1515
OsDragonfly }
1616

1717
#[deriving(PartialEq, Eq, Hash, Encodable, Decodable, Clone)]

0 commit comments

Comments
 (0)