smalltalk
/
osmo-st-sip
Archived
1
0
Fork 0

rand: 1^N == 1 all the time..

This commit is contained in:
Holger Hans Peter Freyther 2015-07-24 15:36:01 +02:00
parent 57e67cac55
commit 15d8883c95
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ Object subclass: SIPUserAgentBase [
SIPUserAgentBase class >> generateCSeq [
<category: 'helper'>
"CSeq must be < 2^31 but Random only allows 2^29"
^ Random between: 1 and: (1 raisedTo: 29).
^ Random between: 1 and: (2 raisedTo: 29).
]