1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-10 16:43:33 +02:00

lib-src/libsndfile: fix warning about format argument type mismatch

This commit is contained in:
Paul Licameli
2018-11-13 08:44:08 -05:00
parent 90b2e823e4
commit 449bd38477

View File

@@ -181,7 +181,7 @@ gen_coding_history (char * added_history, int added_history_max, const SF_INFO *
count = snprintf (added_history, added_history_max,
"A=PCM,F=%u,W=%hu,M=%s,T=%s-%s\r\n",
psfinfo->samplerate, width, chnstr, PACKAGE, VERSION) ;
psfinfo->samplerate, (unsigned short)width, chnstr, PACKAGE, VERSION) ;
if (count >= added_history_max)
return 0 ;