summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorKiwamu Ishikura <ishikura.kiwamu@gmail.com>2014-12-29 14:26:36 +0900
committerKiwamu Ishikura <ishikura.kiwamu@gmail.com>2014-12-29 14:26:36 +0900
commit692ffdc55e7aa7d6304b1ed782f8bf24c3c7b4e5 (patch)
tree98435bb14a254187e50c191d9a7a43bd749884f3 /packages
parent67359925ee8580fbcdc3216f18d34d4e2e557817 (diff)
add semicoron
add semicoron
Diffstat (limited to 'packages')
-rw-r--r--packages/base/src/C/vector-aux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/base/src/C/vector-aux.c b/packages/base/src/C/vector-aux.c
index ec6ec80..dda47cb 100644
--- a/packages/base/src/C/vector-aux.c
+++ b/packages/base/src/C/vector-aux.c
@@ -705,7 +705,7 @@ int saveMatrix(char * file, char * format, KDMAT(a)){
705#pragma message "randomVector is not thread-safe in OSX" 705#pragma message "randomVector is not thread-safe in OSX"
706 706
707inline double urandom() { 707inline double urandom() {
708 const long max_random = 2147483647 // 2**31 - 1 708 const long max_random = 2147483647; // 2**31 - 1
709 return (double)random() / (double)max_random; 709 return (double)random() / (double)max_random;
710} 710}
711 711