Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tree/ls_util/entry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,7 @@ fn get_file_info(metadata: &ftw::Metadata) -> FileInfo {

// major ID - class of the device
// minor ID - specific instance of a device
let (major, minor) = unsafe {
let (major, minor) = {
(
libc::major(device_id as libc::dev_t),
libc::minor(device_id as libc::dev_t),
Expand Down