summaryrefslogtreecommitdiffstats
path: root/ax25/access.c
diff options
context:
space:
mode:
Diffstat (limited to 'ax25/access.c')
-rw-r--r--ax25/access.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ax25/access.c b/ax25/access.c
index 1363238..185deda 100644
--- a/ax25/access.c
+++ b/ax25/access.c
@@ -32,7 +32,7 @@ static void char_to_hex(char *c, char *h, int n);
int conv_rand(void)
{
seed = (1103515245L * seed + 12345) & CONV_RAND_MAX;
- return ((int) (seed & 077777));
+ return (int) (seed & 077777);
}
/*--------------------------------------------------------------------------*/
@@ -46,7 +46,7 @@ void conv_randomize(void)
int conv_random(int num, int base)
{
- return (((long) (conv_rand() * time(0)) & CONV_RAND_MAX) % num + base);
+ return ((long) (conv_rand() * time(0)) & CONV_RAND_MAX) % num + base;
}
/*--------------------------------------------------------------------------*/