aboutsummaryrefslogtreecommitdiffstats
path: root/examples/process_full.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/process_full.rs')
-rw-r--r--examples/process_full.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/process_full.rs b/examples/process_full.rs
index 5aa5422..fca87c7 100644
--- a/examples/process_full.rs
+++ b/examples/process_full.rs
@@ -15,7 +15,7 @@ fn draw_frames(frames: &[Vec<u8>]) {
let mut stdout = std::io::stdout();
let mut parser = vt100::Parser::default();
for frame in frames {
- parser.process(&frame);
+ parser.process(frame);
let contents = parser.screen().contents_formatted();
stdout.write_all(&contents).unwrap();
}