Indentation fix

This commit is contained in:
deajan 2018-10-02 11:41:46 +02:00
parent 65d4c3c3ff
commit 250ac48ed6
1 changed files with 3 additions and 3 deletions

View File

@ -116,9 +116,9 @@ fi
#### PoorMansRandomGenerator SUBSET ####
# Get a random number on Windows BusyBox alike, also works on most Unixes that have dd, if dd is not found, then return $RANDOM
function PoorMansRandomGenerator {
local digits="${1}" # The number of digits to generate
local number
local isFirst=true
local digits="${1}" # The number of digits to generate
local number
local isFirst=true
if type dd >/dev/null 2>&1; then