Remove extra whitespace before EOL
This commit is contained in:
@@ -48,7 +48,7 @@ void BH_Mat3fMul(const float a[9],
|
||||
{
|
||||
float tmp[9], row[3];
|
||||
|
||||
SET_ROW(row, b[0]); BH_Vec3fMul(&a[0], row, &tmp[0]);
|
||||
SET_ROW(row, b[0]); BH_Vec3fMul(&a[0], row, &tmp[0]);
|
||||
SET_ROW(row, b[1]); BH_Vec3fMulAdd(&a[3], row, &tmp[0], &tmp[0]);
|
||||
SET_ROW(row, b[2]); BH_Vec3fMulAdd(&a[6], row, &tmp[0], &tmp[0]);
|
||||
|
||||
|
||||
@@ -117,7 +117,7 @@ int BH_SemaphorePost(BH_Semaphore *semaphore)
|
||||
/* Increase semaphore value */
|
||||
if (pthread_mutex_lock(&semaphore->mutex))
|
||||
return BH_ERROR;
|
||||
|
||||
|
||||
result = BH_OK;
|
||||
semaphore->count++;
|
||||
if (semaphore->waiters && pthread_cond_signal(&semaphore->condition))
|
||||
@@ -142,7 +142,7 @@ int BH_SemaphoreWait(BH_Semaphore *semaphore)
|
||||
result = pthread_cond_wait(&semaphore->condition, &semaphore->mutex);
|
||||
if (result && result != ETIMEDOUT) {
|
||||
result = BH_ERROR;
|
||||
break;
|
||||
break;
|
||||
}
|
||||
result = BH_OK;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user