cosmetic fixes

This commit is contained in:
Christian Thaeter 2007-09-02 17:51:55 +02:00
parent 7445c1798d
commit d50ab9fe21
2 changed files with 4 additions and 6 deletions

View file

@ -41,10 +41,8 @@ cinelerra_condition_destroy (CinelerraCondition self)
CINELERRA_DIE;
else if (pthread_cond_destroy (&self->cond))
CINELERRA_DIE;
else
return self;
}
return NULL;
return self;
}

View file

@ -48,9 +48,9 @@ cinelerra_condition_init (CinelerraCondition self);
/**
* destroy a condition variable
* @param self is a pointer to the condition variable to be initialized
* @return self on success or NULL at error
* Destroy a condition variable
* @param self is a pointer to the condition variable to be destroyed
* @return self as given
*/
CinelerraCondition
cinelerra_condition_destroy (CinelerraCondition self);