fix: time mix

This commit is contained in:
Camille Chauvet 2023-04-25 15:01:54 +00:00
parent 69e34424c1
commit 41bd1149d8

View File

@ -11,13 +11,13 @@ static void print(t_data *data, size_t id, char *str)
size_t time;
bool stop;
time = get_time();
pthread_mutex_lock(&data->print_mutex);
pthread_mutex_lock(&data->stop_mutex);
stop = data->stop;
pthread_mutex_unlock(&data->stop_mutex);
if (stop == false)
{
time = get_time();
ft_putnum(time, 7);
ft_putchar(' ');
ft_putnum(id + 1, 3);