diff options
| author | Laurenz <laurmaedje@gmail.com> | 2021-02-11 21:22:06 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2021-02-11 22:24:42 +0100 |
| commit | a2fcc1bf288c5162de7b2158166de62cb0610083 (patch) | |
| tree | c9d825abf6909168a9b2e7e98987a3e95202ff92 /src/main.rs | |
| parent | 146eda102a5d0241c96a808a847f3b855340765e (diff) | |
Small fixes ♻
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index c221f3b6..ae655253 100644 --- a/src/main.rs +++ b/src/main.rs @@ -65,7 +65,7 @@ fn main() -> anyhow::Result<()> { } } - let pdf_data = pdf::export(&frames, &env); + let pdf_data = pdf::export(&env, &frames); fs::write(&dest_path, pdf_data).context("Failed to write PDF file.")?; Ok(()) |
