Whitespace fixes

This commit is contained in:
Ben S 2014-12-12 12:08:14 +00:00
parent 65f124fe39
commit 4484982734
3 changed files with 7 additions and 7 deletions

View File

@ -31,9 +31,9 @@ mod c {
}
pub unsafe fn dimensions() -> winsize {
let mut window: winsize = zeroed();
ioctl(STDOUT_FILENO, TIOCGWINSZ, &mut window as *mut winsize);
window
let mut window: winsize = zeroed();
ioctl(STDOUT_FILENO, TIOCGWINSZ, &mut window as *mut winsize);
window
}
}