Merge of revision 355 from branch-1.6.x into trunk.

git-svn-id: https://pupnp.svn.sourceforge.net/svnroot/pupnp/trunk@356 119443c7-1b9e-41f8-b6fc-b9c35fce742c
This commit is contained in:
Marcelo Roberto Jimenez
2008-04-29 18:10:17 +00:00
parent 7206e80127
commit 4f2075b7c9
2 changed files with 9 additions and 1 deletions

View File

@@ -391,7 +391,7 @@ static void SetSeed()
srand( ( unsigned int )t.tv_usec + (unsigned int)ithread_get_current_thread_id().p );
#elif defined(__FreeBSD__) || defined(__OSX__) || defined(__APPLE__)
srand( ( unsigned int )t.tv_usec + (unsigned int)ithread_get_current_thread_id() );
#elif defined(__linux__) || defined(__sun)
#elif defined(__linux__) || defined(__sun) || defined(__CYGWIN__)
srand( ( unsigned int )t.tv_usec + ithread_get_current_thread_id() );
#else
{