Hello All.

I have got a build error as following.
 ../../src/include/eina_inline_lock_win32.x:496:30: error: 'ev'
undeclared (first use in this function)

So I have changed ev->shared->lock to  *sem.
That's all. Please review the patch.

Sincerely,
Shinwoo Kim.
Index: src/include/eina_inline_lock_win32.x
===================================================================
--- src/include/eina_inline_lock_win32.x	(revision 67292)
+++ src/include/eina_inline_lock_win32.x	(working copy)
@@ -493,7 +493,7 @@ eina_semaphore_lock(Eina_Semaphore *sem)
    if (!sem)
      return EINA_FALSE;
 
-   res = WaitForSingleObject(ev->shared->lock, 0L);
+   res = WaitForSingleObject(*sem, 0L);
    if (res == WAIT_OBJECT_0)
      return EINA_TRUE;
 
------------------------------------------------------------------------------
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to