X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/7ae9fd31204fa5873ceebf1fed5ab22588bd9bd7..afea511a759408f44ac37493df8944d6c5cf2d69:/sbr/fmt_scan.c diff --git a/sbr/fmt_scan.c b/sbr/fmt_scan.c index 97a4a05a..ec60e1ba 100644 --- a/sbr/fmt_scan.c +++ b/sbr/fmt_scan.c @@ -745,6 +745,9 @@ fmt_scan (struct format *format, charstring_t scanlp, int width, int *dat, case FT_LV_MINUS_L: value = fmt->f_value - value; break; + case FT_LV_MULTIPLY_L: + value *= fmt->f_value; + break; case FT_LV_DIVIDE_L: if (fmt->f_value) value = value / fmt->f_value;