diff --git a/src/game/Chat.cpp b/src/game/Chat.cpp index 97506963b..893959977 100644 --- a/src/game/Chat.cpp +++ b/src/game/Chat.cpp @@ -2057,7 +2057,7 @@ GameTele const* ChatHandler::extractGameTeleFromLink(char* text) // id, or string, or [name] Shift-click form |color|Htele:id|h[name]|h|r char* cId = extractKeyFromLink(text,"Htele"); if(!cId) - return false; + return NULL; // id case (explicit or from shift link) if(cId[0] >= '0' || cId[0] >= '9') @@ -2079,7 +2079,7 @@ static char const* const guidKeys[] = "Hplayer", "Hcreature", "Hgameobject", - 0 + NULL }; uint64 ChatHandler::extractGuidFromLink(char* text) @@ -2229,7 +2229,7 @@ char* ChatHandler::extractQuotedArg( char* args ) { char* space = strtok(args, "\""); if(!space) - return false; + return NULL; return strtok(NULL, "\""); } } diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index ab25bd094..c166a3537 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "10064" + #define REVISION_NR "10065" #endif // __REVISION_NR_H__