Module: wine Branch: master Commit: e70de44edf80e685b65044d87438447bbadb81ad URL: http://source.winehq.org/git/wine.git/?a=commit;h=e70de44edf80e685b65044d874...
Author: André Hentschel nerv@dawncrow.de Date: Tue Jul 5 21:37:32 2011 +0200
winmm: Remove dead initialization (clang).
---
dlls/winmm/mci.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/winmm/mci.c b/dlls/winmm/mci.c index 10dd76a..15ff6ed 100644 --- a/dlls/winmm/mci.c +++ b/dlls/winmm/mci.c @@ -1870,7 +1870,7 @@ static DWORD MCI_WriteString(LPWSTR lpDstStr, DWORD dstSize, LPCWSTR lpSrcStr) static DWORD MCI_SysInfo(UINT uDevID, DWORD dwFlags, LPMCI_SYSINFO_PARMSW lpParms) { DWORD ret = MCIERR_INVALID_DEVICE_ID, cnt = 0; - WCHAR buf[2048], *s = buf, *p; + WCHAR buf[2048], *s, *p; LPWINE_MCIDRIVER wmd; HKEY hKey;