Skip to content

Commit f69c26b

Browse files
David Hothamapanda
authored andcommitted
Fix the build (#85)
1 parent 190f2c1 commit f69c26b

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

framework/src/config/config_reader.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,7 @@ pub fn read_configuration_from_str(configuration: &str, filename: &str) -> Resul
296296
pool_size: pool_size,
297297
cache_size: cache_size,
298298
ports: ports,
299+
dpdk_args: None,
299300
})
300301
}
301302

framework/src/config/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ impl fmt::Display for NetbricksConfiguration {
7474
for core in &self.cores {
7575
try!(write!(f, "\t{}\n", core))
7676
}
77-
if let Some(arg) = self.dpdk_args {
77+
if let Some(ref arg) = self.dpdk_args {
7878
write!(f, "DPDK Args: {}\n", arg)?
7979
};
8080
write!(f, "")

0 commit comments

Comments
 (0)