You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/games-simulation/cannonsmash/files/cannonsmash-0.6.6-sizeof-ca...

12 lines
362 B

Don't typecast otherwise C++ will fail to match on some arches.
http://bugs.gentoo.org/84187
--- a/loadparts.cpp
+++ b/loadparts.cpp
@@ -247,3 +247,3 @@
// concat next line(s)
- int bufsize = clamp(0U, sizeof(line)-l, sizeof(line)-1);
+ int bufsize = clamp((size_t)0, sizeof(line)-l, sizeof(line)-1);
fgets(&line[l-2], bufsize, fp);