From 1c2079dcf520bbf2fb6097a7e0336b96d720a792 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9a=20Saviot?= Date: Thu, 13 Sep 2018 17:36:52 +0200 Subject: [PATCH] [bench] Fix bench command to print Integer --- ion/src/device/bench/command/display.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ion/src/device/bench/command/display.cpp b/ion/src/device/bench/command/display.cpp index 224c83d47..872a763a2 100644 --- a/ion/src/device/bench/command/display.cpp +++ b/ion/src/device/bench/command/display.cpp @@ -64,7 +64,7 @@ void Display(const char * input) { } char response[16] = {'D', 'E', 'L', 'T', 'A', '='}; - Poincare::Integer(numberOfInvalidPixels).writeTextInBuffer(response+6, sizeof(response)-6); + Poincare::Integer(numberOfInvalidPixels).serialize(response+6, sizeof(response)-6); reply(response); }