From 51b78b628bbfa5113cdeeae30c583fe15be30371 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Wed, 27 Aug 2014 00:32:24 -0700 Subject: [PATCH] Remove getpid() which isn't present in WinRT --- limelight-common/OpenAES/oaes_lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/limelight-common/OpenAES/oaes_lib.c b/limelight-common/OpenAES/oaes_lib.c index 23a4447..bee7f26 100644 --- a/limelight-common/OpenAES/oaes_lib.c +++ b/limelight-common/OpenAES/oaes_lib.c @@ -512,7 +512,7 @@ static uint32_t oaes_get_seed() _test = (char *) calloc( sizeof( char ), timer.millitm ); _ret = gmTimer->tm_year + 1900 + gmTimer->tm_mon + 1 + gmTimer->tm_mday + gmTimer->tm_hour + gmTimer->tm_min + gmTimer->tm_sec + timer.millitm + - (uint32_t) ( _test + timer.millitm ) + _getpid(); + (uint32_t) ( _test + timer.millitm ); if( _test ) free( _test );