[libpri-commits] dhubbard: branch dhubbard/bbfcfm r1070 - /team/dhubbard/bbfcfm/q931.c
SVN commits to the libpri project
libpri-commits at lists.digium.com
Sat Sep 5 09:06:34 CDT 2009
Author: dhubbard
Date: Sat Sep 5 09:06:28 2009
New Revision: 1070
URL: http://svn.asterisk.org/svn-view/libpri?view=rev&rev=1070
Log:
whitespace changes to satisfy coding guidelines
rmudgett suggestions in https://reviewboard.asterisk.org/r/347/
Modified:
team/dhubbard/bbfcfm/q931.c
Modified: team/dhubbard/bbfcfm/q931.c
URL: http://svn.asterisk.org/svn-view/libpri/team/dhubbard/bbfcfm/q931.c?view=diff&rev=1070&r1=1069&r2=1070
==============================================================================
--- team/dhubbard/bbfcfm/q931.c (original)
+++ team/dhubbard/bbfcfm/q931.c Sat Sep 5 09:06:28 2009
@@ -2925,7 +2925,7 @@
unsigned int x, max;
struct msgtype *m = NULL;
- if ( pd == MAINTENANCE_PROTOCOL_DISCRIMINATOR_1 ) {
+ if (pd == MAINTENANCE_PROTOCOL_DISCRIMINATOR_1) {
m = att_maintenance_msgs;
max = ARRAY_LEN(att_maintenance_msgs);
} else {
@@ -2933,8 +2933,8 @@
max = ARRAY_LEN(national_maintenance_msgs);
}
- for ( x = 0; x < max; x++ ) {
- if ( m[x].msgnum == msg ) {
+ for (x = 0; x < max; x++) {
+ if (m[x].msgnum == msg) {
return m[x].name;
}
}
More information about the libpri-commits
mailing list