* fixes for windows

* corrected allocation in ftfilecreator



git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@707 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
drbob 2008-08-25 20:03:39 +00:00
parent f243e5f6d3
commit d62876ae37
5 changed files with 101 additions and 18 deletions

View file

@ -168,7 +168,11 @@ void ftServer::run()
{
while(1)
{
#ifdef WIN32
Sleep(1000);
#else
sleep(1);
#endif
}
}