aboutsummaryrefslogtreecommitdiffstats
path: root/main/devicestate.c
diff options
context:
space:
mode:
authordvossel <dvossel@f38db490-d61c-443f-a65b-d21fe96a405b>2009-07-08 22:02:54 +0000
committerdvossel <dvossel@f38db490-d61c-443f-a65b-d21fe96a405b>2009-07-08 22:02:54 +0000
commit7fcfa25faaac6c0d37eddf6ee9044c15d57c0788 (patch)
tree1203d222cf9248861f1422b773d28618c6042867 /main/devicestate.c
parent34effc32a8289d0d90af34993a6808d03f3278f4 (diff)
missing comma in devstatestring array
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@205410 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/devicestate.c')
-rw-r--r--main/devicestate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/devicestate.c b/main/devicestate.c
index 01e4b27f5..d7d8ea4cb 100644
--- a/main/devicestate.c
+++ b/main/devicestate.c
@@ -137,7 +137,7 @@ static const char * const devstatestring[][2] = {
{ /* 5 AST_DEVICE_UNAVAILABLE */ "Unavailable", "UNAVAILABLE" }, /*!< Unavailable (not registered) */
{ /* 6 AST_DEVICE_RINGING */ "Ringing", "RINGING" }, /*!< Ring, ring, ring */
{ /* 7 AST_DEVICE_RINGINUSE */ "Ring+Inuse", "RINGINUSE" }, /*!< Ring and in use */
- { /* 8 AST_DEVICE_ONHOLD */ "On Hold" "ONHOLD" }, /*!< On Hold */
+ { /* 8 AST_DEVICE_ONHOLD */ "On Hold", "ONHOLD" }, /*!< On Hold */
};
/*!\brief Mapping for channel states to device states */