call-settings: apply rule M11 of coding style

This commit is contained in:
Lucas De Marchi 2011-01-12 09:27:47 -02:00 committed by Denis Kenzior
parent 4614a72e2b
commit f88f81f132
1 changed files with 17 additions and 17 deletions

View File

@ -42,24 +42,24 @@ static GSList *g_drivers = NULL;
/* 27.007 Section 7.7 */
enum clir_status {
CLIR_STATUS_NOT_PROVISIONED = 0,
CLIR_STATUS_PROVISIONED_PERMANENT,
CLIR_STATUS_UNKNOWN,
CLIR_STATUS_TEMPORARY_RESTRICTED,
CLIR_STATUS_TEMPORARY_ALLOWED
CLIR_STATUS_PROVISIONED_PERMANENT = 1,
CLIR_STATUS_UNKNOWN = 2,
CLIR_STATUS_TEMPORARY_RESTRICTED = 3,
CLIR_STATUS_TEMPORARY_ALLOWED = 4
};
/* 27.007 Section 7.6 */
enum clip_status {
CLIP_STATUS_NOT_PROVISIONED = 0,
CLIP_STATUS_PROVISIONED,
CLIP_STATUS_UNKNOWN
CLIP_STATUS_PROVISIONED = 1,
CLIP_STATUS_UNKNOWN = 2
};
/* 27.007 Section 7.30 */
enum cnap_status {
CNAP_STATUS_NOT_PROVISIONED = 0,
CNAP_STATUS_PROVISIONED,
CNAP_STATUS_UNKNOWN
CNAP_STATUS_PROVISIONED = 1,
CNAP_STATUS_UNKNOWN = 2
};
/* 27.007 Section 7.8 */