1
0
mirror of https://gitlab.com/klmp200/LO41.git synced 2025-07-11 20:29:24 +00:00

Les ascenseurs en premier

This commit is contained in:
2018-06-11 02:31:03 +02:00
parent ab0e742cd4
commit e52cb25c55
2 changed files with 6 additions and 11 deletions

View File

@ -11,7 +11,7 @@ GETTER(Resident, int, apartment_floor);
void * runnable_Resident(void * void_this){
Resident * this = (Resident*) void_this;
printf("Je suis le RESIDENT %s et je suis a l'etage %d en direction de l'etage %d\n",
printf("Je suis le resident %s et je suis a l'etage %d en direction de l'etage %d\n",
this->name, this->apartment_floor, this->destination);
return NULL;
}