aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_sms.c
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-04-25 20:20:10 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-04-25 20:20:10 +0000
commit48f62970c31279141d519f7f64bd5d6d875d7215 (patch)
tree6a302ccb7b6599b8c7d7de1daeebed89f8fc3544 /apps/app_sms.c
parent784c0931ff31bfb0ac1ada811359779d3133333d (diff)
Whitespace changes only
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@114667 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_sms.c')
-rw-r--r--apps/app_sms.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/apps/app_sms.c b/apps/app_sms.c
index 2af6a2590..0272468d6 100644
--- a/apps/app_sms.c
+++ b/apps/app_sms.c
@@ -260,8 +260,9 @@ static void numcpy(char *d, char *s)
if (*s == '+')
*d++ = *s++;
while (*s) {
- if (isdigit(*s))
- *d++ = *s;
+ if (isdigit(*s)) {
+ *d++ = *s;
+ }
s++;
}
*d = 0;
@@ -600,8 +601,9 @@ static void unpacksms7(unsigned char *i, unsigned char l, unsigned char *udh, in
}
/*! \brief unpacks bytes (8 bit encoding) at i, len l septets,
- and places in udh and ud setting udhl and udl. udh not used
- if udhi not set */
+ * and places in udh and ud setting udhl and udl. udh not used
+ * if udhi not set.
+ */
static void unpacksms8(unsigned char *i, unsigned char l, unsigned char *udh, int *udhl, unsigned short *ud, int *udl, char udhi)
{
unsigned short *o = ud;