Commit c01aca41 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Kill a warning with an explicit cast for windows.

parent d8e69495
......@@ -556,7 +556,7 @@ static int Control( access_t *p_access, int i_query, va_list args )
* GetTmpFilePath:
*****************************************************************************/
#ifdef WIN32
#define getpid() GetCurrentProcessId()
#define getpid() (int)GetCurrentProcessId()
#endif
static char *GetTmpFilePath( access_t *p_access )
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment