devicestate: Make ast_devstate_changed_literal() return value and doxygen consistent.

Nothing actually cares about the value anyway.

(closes issue ASTERISK-23178)
Reported by: Jonathan Rose
........

Merged revisions 407337 from http://svn.asterisk.org/svn/asterisk/branches/1.8
........

Merged revisions 407338 from http://svn.asterisk.org/svn/asterisk/branches/11


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/12@407339 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Richard Mudgett
2014-02-04 20:08:35 +00:00
parent 0cef24086d
commit 5b83882bee
2 changed files with 1 additions and 2 deletions

View File

@@ -130,7 +130,6 @@ enum ast_device_state ast_parse_device_state(const char *device);
* active channels list for the device. * active channels list for the device.
* *
* \retval an AST_DEVICE_??? state * \retval an AST_DEVICE_??? state
* \retval -1 on failure
*/ */
enum ast_device_state ast_device_state(const char *device); enum ast_device_state ast_device_state(const char *device);

View File

@@ -463,7 +463,7 @@ int ast_devstate_changed_literal(enum ast_device_state state, enum ast_devstate_
AST_LIST_UNLOCK(&state_changes); AST_LIST_UNLOCK(&state_changes);
} }
return 1; return 0;
} }
int ast_device_state_changed_literal(const char *dev) int ast_device_state_changed_literal(const char *dev)