From 0819cce45024fe7faf782c1b3447917b096d3670 Mon Sep 17 00:00:00 2001 From: Louis Rubet Date: Mon, 29 May 2017 17:53:42 +0200 Subject: [PATCH] #98: changed "stack should be" error message --- src/rpn-test-core.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rpn-test-core.hpp b/src/rpn-test-core.hpp index 99c9755..81e670b 100644 --- a/src/rpn-test-core.hpp +++ b/src/rpn-test-core.hpp @@ -171,7 +171,7 @@ void test(string test_filename, int& total_tests, int& total_tests_failed, int& // show failure printf("\t%s\n", entry.c_str()); - printf("\tbut real stack size is " FG_RED "%s" COLOR_OFF "\n", stack_is.c_str()); + printf("\tbut real stack is " FG_RED "%s" COLOR_OFF "\n", stack_is.c_str()); failed = true; } is_first_step = false;