diff options
Diffstat (limited to 'src/odf')
-rw-r--r--[-rwxr-xr-x] | src/odf/odf.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/odf/odf.ml b/src/odf/odf.ml index 68add32..0091d8b 100755..100644 --- a/src/odf/odf.ml +++ b/src/odf/odf.ml @@ -145,7 +145,7 @@ let write_cell output value = begin function | Expression.Basic b -> write_basic [] output b
| Expression.Formula (Expression.Expression f) ->
let buffer = UTF8.Buffer.create 10 in
- ExpressionPrinter.eval f () buffer;
+ ExpressionPrinter.eval f buffer;
let formula = UTF8.Buffer.contents buffer
|> UTF8.to_utf8string in
write_formula output [(NS.formula_attr, ("of:=" ^formula))] f value
|