This commit is contained in:
orange 2013-06-16 16:38:35 +02:00
parent 9cbdcee7e9
commit c69aef41d6

View file

@ -206,7 +206,8 @@ int main(int argc, char *argv[]) {
assert(ret == 0);
for (int t = 0; t < num_threads; t++) {
ret = pthread_create(&threads[t], NULL, compmandelbrot, (void *) &mbrot);
ret =
pthread_create(&threads[t], NULL, compmandelbrot, (void *) &mbrot);
assert(ret == 0);
}