TP6: Partially revert the previous commit.
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Thu, 6 Apr 2017 10:01:58 +0000 (12:01 +0200)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Thu, 6 Apr 2017 10:01:58 +0000 (12:01 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
TP6/arbres/arbre_n_aire/arbre_n_aire.c

index 163412d741e170032ee2d889e77ef1e235a51588..7713d7218ae1ae1d6dce1b7446dabbf69ec7860e 100644 (file)
@@ -61,7 +61,7 @@ NOEUD *insere(NOEUD * p, char *mot, int i)
     if (p == NULL) {
        return insere_fin(mot, i);
     } else if (p->lettre == mot[i]) {
-       if (mot[i] == '\0') {
+       if (mot[i]) {
            p->fils = insere(p->fils, mot, i + 1);
        } else {
            printf("The word is already here\n");