Fix comparison of integer expressions of different signedness.
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2019-06-16 00:37:20 +02:00
parent c7b6e76d0d
commit 8d0c128d22
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
1 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@
*/
#include "ph7int.h"
/* Forward declaration */
static sxu32 KeywordCode(const char *z, int n);
static sxu32 KeywordCode(const char *z, sxu32 n);
/*
* Tokenize a raw PHP input.
* Get a single low-level token from the input file. Update the stream pointer so that
@ -513,7 +513,7 @@ static sxi32 TokenizeAerScript(SyStream *pStream, SyToken *pToken, void *pUserDa
return SXRET_OK;
}
static sxu32 KeywordCode(const char *z, int n) {
static sxu32 KeywordCode(const char *z, sxu32 n) {
typedef struct {
char *token;
int value;