aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rw-r--r--bin/rndl.awk2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/rndl.awk b/bin/rndl.awk
index f495a28c..8feb4f90 100644
--- a/bin/rndl.awk
+++ b/bin/rndl.awk
@@ -9,7 +9,7 @@ BEGIN {
# Seed the random number generator
"rnds 2>/dev/null" | getline seed
if (length(seed))
- srand(seed)
+ srand(seed + 0)
else
srand()
}