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 bb0ce22b2b
commit 7b30158147
2 changed files with 11 additions and 9 deletions

View File

@@ -302,7 +302,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;
}
@@ -313,7 +314,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;
}