fix tabbing comment issue
[c11tester.git] / pthread.cc
index f0f968489d4857c86f60b5ee13972d735fada982..8c2bc076f3024edbc9042d428385b3dd36f77bc2 100644 (file)
@@ -44,7 +44,7 @@ int pthread_join(pthread_t t, void **value_ptr) {
 void pthread_exit(void *value_ptr) {
        Thread * th = thread_current();
        model->switch_to_master(new ModelAction(THREAD_FINISH, std::memory_order_seq_cst, th));
-       while(1) ;                      //make warning goaway
+       while(1) ;//make warning goaway
 }
 
 int pthread_mutex_init(pthread_mutex_t *p_mutex, const pthread_mutexattr_t *) {