Remove unneeded "mut"
This commit is contained in:
parent
af819f0fca
commit
e518598351
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ impl GPSEntry for Entry {
|
|||
"gps",
|
||||
];
|
||||
|
||||
let mut hdr = self.get_header_mut();
|
||||
let hdr = self.get_header_mut();
|
||||
for pattern in patterns.iter() {
|
||||
let _ = hdr.delete(pattern).chain_err(|| GPSEK::HeaderWriteError)?;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue