comparison playsound/playsound.c @ 571:3b8748455aff

Fixed compiler warning.
author Ryan C. Gordon <icculus@icculus.org>
date Sun, 24 Jan 2010 13:29:27 -0500
parents 11bb8cb8ebc8
children 7815c90ba552
comparison
equal deleted inserted replaced
570:d48126606f4d 571:3b8748455aff
1012 { 1012 {
1013 fprintf(stderr, 1013 fprintf(stderr,
1014 "Couldn't fully decode \"%s\"!\n" 1014 "Couldn't fully decode \"%s\"!\n"
1015 " reason: [%s].\n" 1015 " reason: [%s].\n"
1016 " (playing first %lu bytes of decoded data...)\n", 1016 " (playing first %lu bytes of decoded data...)\n",
1017 filename, Sound_GetError(), global_state.decoded_bytes); 1017 filename, Sound_GetError(),
1018 (unsigned long) global_state.decoded_bytes);
1018 } /* if */ 1019 } /* if */
1019 else 1020 else
1020 { 1021 {
1021 fprintf(stdout, "done.\n"); 1022 fprintf(stdout, "done.\n");
1022 } /* else */ 1023 } /* else */