diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-04-20 05:40:53 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-04-20 05:40:53 +0200 |
commit | dd14214e1ad46b9fa323be7e7e13c55c30085a67 (patch) | |
tree | 0ed7b28d3ad2c5cf2bbaa8c7d121f52f26512aa9 /src/fig/FIGCarousel.cpp | |
parent | f6803b2375d1b21ed4cc035e268f8759d5170491 (diff) | |
download | dabmux-dd14214e1ad46b9fa323be7e7e13c55c30085a67.tar.gz dabmux-dd14214e1ad46b9fa323be7e7e13c55c30085a67.tar.bz2 dabmux-dd14214e1ad46b9fa323be7e7e13c55c30085a67.zip |
WIP: Correct calculation of FIG0/21 required size
Diffstat (limited to 'src/fig/FIGCarousel.cpp')
-rw-r--r-- | src/fig/FIGCarousel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fig/FIGCarousel.cpp b/src/fig/FIGCarousel.cpp index 81f2100..6d89ad8 100644 --- a/src/fig/FIGCarousel.cpp +++ b/src/fig/FIGCarousel.cpp @@ -286,8 +286,8 @@ size_t FIGCarousel::carousel( if (written == 1 or written == 2) { std::stringstream ss; ss << "Assertion error: FIG" << fig_el->fig->figtype() << "/" << - fig_el->fig->figextension() << " wrote not enough data (" << - written << ")"; + fig_el->fig->figextension() << + " did not write enough data: (" << written << ")"; throw std::runtime_error(ss.str()); } |