summaryrefslogtreecommitdiffstats
path: root/listen/listen.c
diff options
context:
space:
mode:
Diffstat (limited to 'listen/listen.c')
-rw-r--r--listen/listen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/listen/listen.c b/listen/listen.c
index 04be3f1..11f365e 100644
--- a/listen/listen.c
+++ b/listen/listen.c
@@ -332,7 +332,7 @@ int get16(unsigned char *cp)
x <<= 8;
x |= *cp++;
- return (x);
+ return x;
}
int get32(unsigned char *cp)
@@ -347,5 +347,5 @@ int get32(unsigned char *cp)
x <<= 8;
x |= *cp;
- return (x);
+ return x;
}