Fix compilation error introduced by previous commit that was only detected by older compilers: replace erroneous #elif directive with #else.

git-svn-id: http://yate.null.ro/svn/yate/trunk@6449 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
oana 2020-10-30 14:55:13 +00:00
parent b971c2465a
commit 8fec00a500
1 changed files with 1 additions and 1 deletions

View File

@ -1036,7 +1036,7 @@ YATE_API static inline uint32_t YATE_API hashPtr(const void* ptr)
{
#if (_WORDSIZE == 64)
return hashInt64((uintptr_t)ptr);
#elif
#else
return hashInt32((intptr_t)ptr);
#endif
}