FTK change. Fixed NetWare compile error.

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@679 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
ahodgkinson
2006-07-19 18:33:42 +00:00
parent 05f3c2f42c
commit 0bdfcca62b

View File

@@ -674,7 +674,7 @@ RCODE f_semWait(
{
if( _sema_wait( (sema_t *)hSem))
{
rc = RC_SET( NE_FLM_ERROR_WAITING_ON_SEMPAHORE);
rc = RC_SET( NE_FLM_ERROR_WAITING_ON_SEMAPHORE);
}
}
else
@@ -749,7 +749,7 @@ RCODE FLMAPI f_semWait(
{
if( kSemaphoreWait( (SEMAPHORE)hSem) != 0)
{
rc = RC_SET( NE_FLM_ERROR_WAITING_ON_SEMPAHORE);
rc = RC_SET( NE_FLM_ERROR_WAITING_ON_SEMAPHORE);
}
}
else