Skip to content

Commit

Permalink
Fixed compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Oct 21, 2017
1 parent a0ee3d7 commit c6af777
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions timidity/output.c
Expand Up @@ -104,7 +104,6 @@ void s32tou16x(void *dp, Sint32 *lp, Sint32 c)
void s32tof32(void *dp, Sint32 *lp, Sint32 c)
{
float *sp=(float *)(dp);
Sint32 l;
while (c--)
{
*sp++ = (float)(*lp++) / 2147483647.0f;
Expand All @@ -114,7 +113,6 @@ void s32tof32(void *dp, Sint32 *lp, Sint32 c)
void s32tos32(void *dp, Sint32 *lp, Sint32 c)
{
Sint32 *sp=(Sint32 *)(dp);
Sint32 l;
while (c--)
{
*sp++ = (*lp++);
Expand Down

0 comments on commit c6af777

Please sign in to comment.