diff options
author | Chris Robinson <[email protected]> | 2007-12-06 23:57:14 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2007-12-06 23:57:14 -0800 |
commit | 0f3e13ed7c54b21629ee6bbe749ceaab5e4bb6fb (patch) | |
tree | 36b92c7901b63c089609910c7e273c860a5b8e31 /Alc/alsa.c | |
parent | 7d068054e69433000bcc113e3affde25ac8dc75c (diff) |
Use -Wextra instead of -W for extra warnings
Diffstat (limited to 'Alc/alsa.c')
-rw-r--r-- | Alc/alsa.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -444,7 +444,7 @@ static ALCboolean alsa_open_capture(ALCdevice *pDevice, const ALCchar *deviceNam strcmp(deviceName, alsaCaptureDeviceList[idx]) == 0) { if(idx > 0) - sprintf(driver, "hw:%d,0", idx-1); + sprintf(driver, "hw:%zd,0", idx-1); goto open_alsa; } } |