diff options
author | WyldePointer <sohrab.monfared@gmail.com> | 2013-03-09 15:20:57 +0000 |
---|---|---|
committer | Nay <dnpd.dd@gmail.com> | 2013-03-09 15:20:57 +0000 |
commit | 47f7687bab80c1434ac7641b81bbbc064d4f22db (patch) | |
tree | 697eeab528fc9da414c690cd64f515e2b1cecdcc /src/server/authserver/Authentication/AuthCodes.h | |
parent | d2024c5c05690fd9047029156d85fb6cc08e50ca (diff) |
Core: Remove unnecessary commas
Last element of enumerator does not need comma after it's value.
Closes #9367
Diffstat (limited to 'src/server/authserver/Authentication/AuthCodes.h')
-rw-r--r-- | src/server/authserver/Authentication/AuthCodes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/authserver/Authentication/AuthCodes.h b/src/server/authserver/Authentication/AuthCodes.h index 492ac53f8cd..416d14ba5a0 100644 --- a/src/server/authserver/Authentication/AuthCodes.h +++ b/src/server/authserver/Authentication/AuthCodes.h @@ -41,7 +41,7 @@ enum AuthResult WOW_FAIL_GAME_ACCOUNT_LOCKED = 0x18, WOW_FAIL_INTERNET_GAME_ROOM_WITHOUT_BNET = 0x19, WOW_FAIL_UNLOCKABLE_LOCK = 0x20, - WOW_FAIL_DISCONNECTED = 0xFF, + WOW_FAIL_DISCONNECTED = 0xFF }; enum LoginResult @@ -62,7 +62,7 @@ enum LoginResult LOGIN_FAILED4 = 0x0D, LOGIN_CONNECTED = 0x0E, LOGIN_PARENTALCONTROL = 0x0F, - LOGIN_LOCKED_ENFORCED = 0x10, + LOGIN_LOCKED_ENFORCED = 0x10 }; enum ExpansionFlags |