Fix some doxygen and curly placement.

Change-Id: I9a784a7c804120a8fa826c2a4cb9957e4b0b2fc8
This commit is contained in:
Richard Mudgett
2018-06-19 10:43:17 -05:00
parent 986cffa18e
commit 720c2d1da2
2 changed files with 11 additions and 9 deletions

View File

@@ -300,7 +300,8 @@ int ast_custom_function_unregister(struct ast_custom_function *acf)
* \return True (non-zero) if reads escalate privileges.
* \return False (zero) if reads just read.
*/
static int read_escalates(const struct ast_custom_function *acf) {
static int read_escalates(const struct ast_custom_function *acf)
{
return acf->read_escalates;
}
@@ -311,7 +312,8 @@ static int read_escalates(const struct ast_custom_function *acf) {
* \return True (non-zero) if writes escalate privileges.
* \return False (zero) if writes just write.
*/
static int write_escalates(const struct ast_custom_function *acf) {
static int write_escalates(const struct ast_custom_function *acf)
{
return acf->write_escalates;
}