Mercurial > otakunoraifu
diff music2/wavfile.cc @ 47:5f548e5957a8
* get rid of the "deprecated conversion from string constant to ‘char*’" warnings
author | thib |
---|---|
date | Wed, 15 Apr 2009 20:26:32 +0000 |
parents | 3a6aaeab7b4e |
children | ed6c21dde840 |
line wrap: on
line diff
--- a/music2/wavfile.cc +++ b/music2/wavfile.cc @@ -105,7 +105,7 @@ typedef struct static void waveFormatCopy( WAVEFORMAT* wav, char *ptr ); -static char* findchunk (char* s1, char* s2, size_t n) ; +static char* findchunk (char* s1, const char* s2, size_t n) ; static int WaveHeaderCheck (char *wave_buf,int* channels, u_long* samplerate, int* samplebits, u_long* samples,u_long* datastart) { @@ -176,7 +176,7 @@ static int WaveHeaderCheck (char *wave } ; /* WaveHeaderCheck*/ -static char* findchunk (char* pstart, char* fourcc, size_t n) +static char* findchunk (char* pstart, const char* fourcc, size_t n) { char *pend ; int k, test ;