diff options
author | Simon Howard | 2007-06-16 16:02:58 +0000 |
---|---|---|
committer | Simon Howard | 2007-06-16 16:02:58 +0000 |
commit | a9feab0830ecdf0b3e52e9339522918e3f12226f (patch) | |
tree | e2eb921859fba84c39215e6024071f30d0ca4158 /src/p_switch.c | |
parent | c447a5da8c8087d94867560764b59f03d0e70b1d (diff) | |
download | chocolate-doom-a9feab0830ecdf0b3e52e9339522918e3f12226f.tar.gz chocolate-doom-a9feab0830ecdf0b3e52e9339522918e3f12226f.tar.bz2 chocolate-doom-a9feab0830ecdf0b3e52e9339522918e3f12226f.zip |
Shut up strict aliasing warnings
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 909
Diffstat (limited to 'src/p_switch.c')
-rw-r--r-- | src/p_switch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/p_switch.c b/src/p_switch.c index d9b55202..28b59fae 100644 --- a/src/p_switch.c +++ b/src/p_switch.c @@ -183,7 +183,7 @@ P_StartButton buttonlist[i].where = w; buttonlist[i].btexture = texture; buttonlist[i].btimer = time; - buttonlist[i].soundorg = (mobj_t *)&line->frontsector->soundorg; + buttonlist[i].soundorg = &line->frontsector->soundorg; return; } } |