Module: wine Branch: master Commit: 66cd1fd748cc1d9ee942f986737a10a4463e0702 URL: http://source.winehq.org/git/wine.git/?a=commit;h=66cd1fd748cc1d9ee942f98673...
Author: Andrew Talbot andrew.talbot@talbotville.com Date: Tue Sep 11 23:45:32 2007 +0100
shell32: Constify a variable.
---
dlls/shell32/shell.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/shell32/shell.c b/dlls/shell32/shell.c index 2703c7a..26b6146 100644 --- a/dlls/shell32/shell.c +++ b/dlls/shell32/shell.c @@ -307,7 +307,7 @@ static LPSTR SHELL_FindString(LPSTR lpEnv, LPCSTR entry)
/**********************************************************************/
-SEGPTR WINAPI FindEnvironmentString16(LPSTR str) +SEGPTR WINAPI FindEnvironmentString16(LPCSTR str) { SEGPTR spEnv; LPSTR lpEnv,lpString; TRACE("\n");