fixeria submitted this change.
library: fix coding style near f_rnd_int()
Change-Id: Ic9b97cd1626f35b3483f37fa250eea9dfd35ef51
---
M library/Osmocom_Types.ttcn
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/library/Osmocom_Types.ttcn b/library/Osmocom_Types.ttcn
index 57912de..61b1e52 100644
--- a/library/Osmocom_Types.ttcn
+++ b/library/Osmocom_Types.ttcn
@@ -60,7 +60,7 @@
}
/* return random integer 0 <= ret < max. According to ETSI ES 201 873 C.6.1, rnd() returns *less* than 1, so
- * the returned int will always be ret < max, or ret <= (max-1). */
+ * the returned int will always be ret < max, or ret <= (max-1). */
function f_rnd_int(integer max) return integer {
return float2int(rnd()*int2float(max));
}
To view, visit change 39879. To unsubscribe, or for help writing mail filters, visit settings.