summaryrefslogtreecommitdiffstats
path: root/src/modules/line_break.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/line_break.rs')
-rw-r--r--src/modules/line_break.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/line_break.rs b/src/modules/line_break.rs
index ed8b5023d..a7bda251e 100644
--- a/src/modules/line_break.rs
+++ b/src/modules/line_break.rs
@@ -1,8 +1,9 @@
use super::Segment;
use clap::ArgMatches;
+use std::path::Path;
/// Creates a segment for the line break
-pub fn segment(_: &ArgMatches) -> Option<Segment> {
+pub fn segment(_current_dir: &Path, _args: &ArgMatches) -> Option<Segment> {
const LINE_ENDING: &str = "\n";
let mut segment = Segment::new("line_break");