Constify and clean up indentation.

svn path=/trunk/; revision=32021
This commit is contained in:
Guy Harris 2010-02-27 00:55:55 +00:00
parent f3b4098040
commit e6e56a0652
1 changed files with 2 additions and 2 deletions

View File

@ -4445,7 +4445,7 @@ static void
dissect_isup_mlpp_precedence_parameter(tvbuff_t *parameter_tvb, proto_tree *parameter_tree, proto_item *parameter_item)
{
char NI_digits[5]="";
char *temp_text = "";
const char *temp_text = "";
guint8 indicators, digit_pair;
guint32 bin_code;
@ -4458,7 +4458,7 @@ dissect_isup_mlpp_precedence_parameter(tvbuff_t *parameter_tvb, proto_tree *para
temp_text = "Not Allowed";
break;
case 0x2:
temp_text = "Path reserved";
temp_text = "Path reserved";
break;
case 0x3:
temp_text = "Spare";