Skip to content

Commit 3a8927a

Browse files
committed
Remove redundant whitespaces
1 parent 189a135 commit 3a8927a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libproc/proc_pid.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ pub fn listpids(proc_types: ProcType) -> Result<Vec<u32>, String> {
235235
let capacity = buffer_size as usize / mem::size_of::<u32>();
236236
let mut pids: Vec<u32> = Vec::with_capacity(capacity);
237237
let buffer_ptr = pids.as_mut_ptr() as *mut c_void;
238-
238+
239239
let ret = unsafe { proc_listpids(proc_types as u32, 0, buffer_ptr, buffer_size as u32) };
240240

241241
if ret <= 0 {

0 commit comments

Comments
 (0)