forked from M-Labs/zynq-rs
fixed libconfig warns
This commit is contained in:
parent
e18f77fdea
commit
123bedf0fe
|
@ -189,10 +189,10 @@ impl Config {
|
||||||
if is_str {
|
if is_str {
|
||||||
let mut f = root_dir.create_file("/CONFIG.TXT")?;
|
let mut f = root_dir.create_file("/CONFIG.TXT")?;
|
||||||
f.seek(SeekFrom::End(0))?;
|
f.seek(SeekFrom::End(0))?;
|
||||||
f.write(key.as_bytes());
|
f.write(key.as_bytes())?;
|
||||||
f.write("=".as_bytes());
|
f.write("=".as_bytes())?;
|
||||||
f.write(value.as_slice());
|
f.write(value.as_slice())?;
|
||||||
f.write(NEWLINE);
|
f.write(NEWLINE)?;
|
||||||
} else {
|
} else {
|
||||||
let dir = root_dir.create_dir("/CONFIG")?;
|
let dir = root_dir.create_dir("/CONFIG")?;
|
||||||
let mut f = dir.create_file(&[key, ".BIN"].concat())?;
|
let mut f = dir.create_file(&[key, ".BIN"].concat())?;
|
||||||
|
|
Loading…
Reference in New Issue