Refine .gitignore.
[Algorithmic_C.git] / TP6 / hachage / lineaire / hachage_lineaire.c
index c8ac848449b0ec3dc5555c29bd9961cc7dcdb764..4cde13ab366cf16a530cda1c8b5f039f77bbfaa8 100644 (file)
@@ -75,7 +75,7 @@ int inserer(int x, t_elem * tab)
     while (i < M) {
        if (tab[v].etat == VIDE)
            break;
-       /*x absent, on arrête le parcours du tableau */
+       /* x absent, on arrête le parcours du tableau */
        if ((tab[v].etat == OCCUPE) && (tab[v].cle == x))
            return v;
        /* x déjà présent, on ne fait rien */