Skip to content

Commit 08a20fa

Browse files
committed
pmap: fixed typo
1 parent 67b04ad commit 08a20fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/uu/pmap/src/smaps_format_parser.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ pub fn parse_smap_entries(contents: &str) -> Result<Vec<SmapEntry>, Error> {
6161
let val = val.trim();
6262

6363
if key == "VmFlags" {
64-
smap_entry.vmflags = val.into()
64+
smap_entry.vmflags = val.into();
6565
} else {
6666
let val = if let Some(val) = val.strip_suffix(" kB") {
6767
get_smap_item_value(val)?

0 commit comments

Comments
 (0)