Removed unnecessary intermediate variable.

git-svn-id: svn://svn.code.sf.net/p/ctags/code/trunk@715 c5d04d22-be80-434c-894e-aa346cc9e8e8
This commit is contained in:
dhiebert 2009-07-06 03:31:00 +00:00
parent d551db6f38
commit 878e04b2e9
1 changed files with 1 additions and 2 deletions

View File

@ -123,8 +123,7 @@ static hashEntry *newEntry (
extern void addKeyword (const char *const string, langType language, int value)
{
const unsigned long hashedValue = hashValue (string);
hashEntry *tableEntry = getHashTableEntry (hashedValue);
hashEntry *entry = tableEntry;
hashEntry *entry = getHashTableEntry (hashedValue);
if (entry == NULL)
{