Fix missing }

This commit is contained in:
Hathor86 2015-11-20 14:09:27 +01:00
parent 155a08c7bb
commit 8ad0dc3a6d
1 changed files with 3 additions and 2 deletions

View File

@ -46,7 +46,7 @@ namespace BizHawk.Common
static void ThreadProc()
{
var di = new DirectoryInfo(Path.GetTempPath());
for (; ; )
for (;;)
{
var fis = di.GetFiles("bizdelete-*");
foreach (var fi in fis)
@ -73,4 +73,5 @@ namespace BizHawk.Common
}
static System.Threading.Thread thread;
}
}
}