cosmetic fixes
This commit is contained in:
parent
7445c1798d
commit
d50ab9fe21
2 changed files with 4 additions and 6 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue