Skip to content

Commit e99fc20

Browse files
committed
Fix trailing whitespace
1 parent 2e2f53f commit e99fc20

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/libstd/rt/backtrace.rs

+2-2
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 {

src/libsyntax/abi.rs

+1-1
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)