diff options
Diffstat (limited to 'plugins/HTTPServer/src/HttpUser.cpp')
| -rw-r--r-- | plugins/HTTPServer/src/HttpUser.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/HTTPServer/src/HttpUser.cpp b/plugins/HTTPServer/src/HttpUser.cpp index 475765f495..a565289ba7 100644 --- a/plugins/HTTPServer/src/HttpUser.cpp +++ b/plugins/HTTPServer/src/HttpUser.cpp @@ -183,7 +183,7 @@ bool CLHttpUser::bReadGetParameters(char * pszRequest) {  		pszRequest[0] = 0;
  		pszRequest++;
  		for (int nCur = 0; nCur < eLastParam ; nCur++) {
 -			int nLen = strlen(szParmStr[nCur]);
 +			int nLen = (int)strlen(szParmStr[nCur]);
  			if (strncmp(pszRequest, szParmStr[nCur], nLen) == 0) {
  				if (apszParam[nCur]) {
  					bRet = false;
  | 
