Correction warning car oubli d'enlever paramètre printf

This commit is contained in:
Mattéo Delabre 2016-10-22 02:56:20 +02:00
parent 979d9faa6e
commit c142d06464
1 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ void _printVertex(HufVertex vert, wchar_t *buffer, int length) {
if (vert.child_l != NULL && vert.child_r != NULL) {
// Affichage d'un sommet avec enfants, on montre
// la probabilité somme des enfants
printf("\n", vert.frequency);
printf("\n");
// Affichage du fils gauche. Augmentation du préfixe
// pour l'affichage des enfants du fils gauche
@ -50,7 +50,7 @@ void _printVertex(HufVertex vert, wchar_t *buffer, int length) {
} else {
// Affichage d'une feuille de l'arbre, correspondant
// à un caractère du corpus
printf("%c\n", vert.character, vert.frequency);
printf("%c\n", vert.character);
}
}