calibration : [0] au lieu du déréférencement du pointeur
This commit is contained in:
parent
7f6c9398fd
commit
a0858c36cf
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ static char parse_digit(char *line, Node *digits_tree) {
|
|||
* - Si aucun chiffre n'a été trouvé, retourner 0
|
||||
*/
|
||||
static char first_digit(char *line) {
|
||||
while (*line != '\0' && !isdigit(*line)) {
|
||||
while (line[0] != '\0' && !isdigit(line[0])) {
|
||||
line++;
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue