diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-08-15 16:12:16 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-08-15 16:12:16 +0100 |
| commit | 001cc50440d2cdc9edb70223454342c881acac2c (patch) | |
| tree | 262e5bdb6097d1d2f1f7b628b24804361a83c744 | |
| parent | b3667f5e85ce929dd549ca4c429db910f936b2b1 (diff) | |
Fix description formatting again.
| -rw-r--r-- | src/lib/video_content.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/video_content.cc b/src/lib/video_content.cc index 026696f80..2b953f75b 100644 --- a/src/lib/video_content.cc +++ b/src/lib/video_content.cc @@ -400,7 +400,7 @@ VideoContent::processing_description () const ratio *= sample_aspect_ratio().get (); } - snprintf (buffer, sizeof(buffer), _("\nDisplay aspect ratio %.2f:1\n"), ratio); + snprintf (buffer, sizeof(buffer), _("\nDisplay aspect ratio %.2f:1"), ratio); d += buffer; } |
