Module: wine Branch: master Commit: de0a0efca9571f8f248cafed21255d8496ab76f6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=de0a0efca9571f8f248cafed21... Author: Andrew Talbot <andrew.talbot(a)talbotville.com> Date: Thu Sep 15 20:59:51 2011 +0100 mmsystem.dll16: Remove an unused variable. --- dlls/mmsystem.dll16/driver.c | 5 ----- 1 files changed, 0 insertions(+), 5 deletions(-) diff --git a/dlls/mmsystem.dll16/driver.c b/dlls/mmsystem.dll16/driver.c index d3d9882..b18cdcb 100644 --- a/dlls/mmsystem.dll16/driver.c +++ b/dlls/mmsystem.dll16/driver.c @@ -209,17 +209,12 @@ static LPWINE_DRIVER DRIVER_TryOpenDriver16(LPCSTR lpFileName, LPARAM lParam2) LPWINE_DRIVER lpDrv = NULL; HMODULE16 hModule; DRIVERPROC16 lpProc; - LPCSTR lpSFN; LPSTR ptr; TRACE("('%s', %08lX);\n", lpFileName, lParam2); if (strlen(lpFileName) < 1) return lpDrv; - if ((lpSFN = strrchr(lpFileName, '\\')) == NULL) - lpSFN = lpFileName; - else - lpSFN++; if ((ptr = strchr(lpFileName, ' ')) != NULL) { *ptr++ = '\0'; while (*ptr == ' ') ptr++;