mirror of
https://github.com/void-linux/void-packages.git
synced 2025-09-25 05:05:13 +02:00
13 lines
368 B
Diff
13 lines
368 B
Diff
diff --git src/Misc/RandomGen.h src/Misc/RandomGen.h
|
|
index 29aeb48..f7c90f8 100644
|
|
--- src/Misc/RandomGen.h
|
|
+++ src/Misc/RandomGen.h
|
|
@@ -187,7 +187,7 @@ class JenkinsPRNG
|
|
}
|
|
|
|
private:
|
|
- uint32_t rot(uint32_t x, uint k) { return (x << k)|(x >> (32-k)); }
|
|
+ uint32_t rot(uint32_t x, unsigned int k) { return (x << k)|(x >> (32-k)); }
|
|
};
|
|
|
|
|