summaryrefslogtreecommitdiff
path: root/sal/workben/t_random.c
diff options
context:
space:
mode:
Diffstat (limited to 'sal/workben/t_random.c')
-rw-r--r--sal/workben/t_random.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sal/workben/t_random.c b/sal/workben/t_random.c
index dd06f38d4902..d0d73441dfe8 100644
--- a/sal/workben/t_random.c
+++ b/sal/workben/t_random.c
@@ -30,7 +30,7 @@ static char *pt (unsigned char *md, int length)
for (i=0; i<length; i++)
sprintf(&(buf[i*2]),"%02x",md[i]);
- return(buf);
+ return buf;
}
/*
@@ -48,7 +48,7 @@ int SAL_CALL main (void)
printf ("random: %s\n", pt (buffer, 8));
}
rtl_random_destroyPool (pool);
- return(0);
+ return 0;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */