From fc6a372475c44f5f1afe9664dc0b4c01bab02931 Mon Sep 17 00:00:00 2001
From: "paul.albuquer" <paul.albuquerque@hesge.ch>
Date: Sun, 1 Dec 2024 21:50:39 +0100
Subject: [PATCH] Update cours_10.md

---
 slides/cours_10.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/slides/cours_10.md b/slides/cours_10.md
index 4de7dc2..e52cec7 100644
--- a/slides/cours_10.md
+++ b/slides/cours_10.md
@@ -690,7 +690,7 @@ Caractère lu        Pile opérandes
 . . .
 
 ```C
-bool evaluate(char *postfix, double *val) { // init stack
+double evaluate(char *postfix) { // init stack
     for (size_t i = 0; i < strlen(postfix); ++i) {
         if (is_operand(postfix[i])) {
             stack_push(&s, postfix[i]);
-- 
GitLab