diff --git a/apps/shared/cartesian_function.cpp b/apps/shared/cartesian_function.cpp index 1e6245318..a16c95141 100644 --- a/apps/shared/cartesian_function.cpp +++ b/apps/shared/cartesian_function.cpp @@ -189,7 +189,7 @@ Coordinate2D CartesianFunction::templatedApproximateAtParameter(T t, Poincare } constexpr int bufferSize = CodePoint::MaxCodePointCharLength + 1; char unknown[bufferSize]; - Poincare::SerializationHelper::CodePoint(unknown, bufferSize, symbol()); + Poincare::SerializationHelper::CodePoint(unknown, bufferSize, UCodePointUnknownX); PlotType type = plotType(); if (type == PlotType::Cartesian || type == PlotType::Polar) { return Coordinate2D(t, PoincareHelpers::ApproximateWithValueForSymbol(expressionReduced(context), unknown, t, context));