--- rpl/src/instructions_s1.c 2019/02/17 08:59:39 1.103 +++ rpl/src/instructions_s1.c 2019/02/17 09:09:53 1.104 @@ -3375,7 +3375,7 @@ instruction_sto(struct_processus *s_etat struct { struct_processus *s_etat_processus; - struct_liste_chainee *stdin; + struct_liste_chainee *fd_stdin; int pipe_entree; volatile int erreur; } arguments_stdin; @@ -3395,7 +3395,7 @@ thread_stdin(void *argument) ptr = argument; - l_element_courant = (*ptr).stdin; + l_element_courant = (*ptr).fd_stdin; s_etat_processus = (*ptr).s_etat_processus; (*ptr).erreur = d_es; @@ -3991,7 +3991,7 @@ instruction_syseval(struct_processus *s_ } arguments_stdin.s_etat_processus = s_etat_processus; - arguments_stdin.stdin = l_element_stdin; + arguments_stdin.fd_stdin = l_element_stdin; arguments_stdin.pipe_entree = pipes_entree[1]; if (pthread_create(&thread_stdin_tid, &attributs, thread_stdin,