commit | 46fc9c2e11700496b67ba98e03ba27595e535529 | [log] [tgz] |
---|---|---|
author | Andrew Talbot <Andrew.Talbot@talbotville.com> | Sat Feb 24 21:55:12 2007 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Mon Feb 26 13:38:37 2007 +0100 |
tree | 33490441300a824b0fd6109b99d1359acf40bd4c | |
parent | a46ad829e43d70f405c86a948e6a05dabae55b0f [diff] [blame] |
wininet: Constify some variables.
diff --git a/dlls/wininet/http.c b/dlls/wininet/http.c index 17e48c9..08c057d 100644 --- a/dlls/wininet/http.c +++ b/dlls/wininet/http.c
@@ -851,7 +851,7 @@ static UINT HTTP_EncodeBase64( LPCSTR bin, unsigned int len, LPWSTR base64 ) { UINT n = 0, x; - static LPCSTR HTTP_Base64Enc = + static const CHAR HTTP_Base64Enc[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; while( len > 0 )