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

git-svn-id: http://voip.null.ro/svn/yate@6449 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
oana 2020-10-30 14:55:13 +00:00
parent 6c73b96287
commit 8c81cec648
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
}