summaryrefslogtreecommitdiff
path: root/src/heretic/p_pspr.c
diff options
context:
space:
mode:
authorFabian Greffrath2015-05-08 08:57:20 +0200
committerFabian Greffrath2015-05-08 08:57:20 +0200
commit744697c4fe213821c18dd882098b311550d42da7 (patch)
tree6cb2f3e9a4a2b338412b97a03d20e01ae4d1f2d9 /src/heretic/p_pspr.c
parent2e8f6da6fdf0eb71e58d2cdaad24e5b0a332f675 (diff)
downloadchocolate-doom-744697c4fe213821c18dd882098b311550d42da7.tar.gz
chocolate-doom-744697c4fe213821c18dd882098b311550d42da7.tar.bz2
chocolate-doom-744697c4fe213821c18dd882098b311550d42da7.zip
warnings: fix "iteration XY invokes undefined behavior" warnings
These were caused by loops which caused overflow of variables of type angle_t (= unsigned) by multiplication with iterators of typed int in angle calculations. Changing the type of the iterator variables to "unsigned int" prevents the undefined behavior.
Diffstat (limited to 'src/heretic/p_pspr.c')
-rw-r--r--src/heretic/p_pspr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/heretic/p_pspr.c b/src/heretic/p_pspr.c
index 2cbe3674..813dd6a2 100644
--- a/src/heretic/p_pspr.c
+++ b/src/heretic/p_pspr.c
@@ -1330,7 +1330,7 @@ void A_DeathBallImpact(mobj_t * ball)
void A_SpawnRippers(mobj_t * actor)
{
- int i;
+ unsigned int i;
angle_t angle;
mobj_t *ripper;