diff --git a/BizHawk.Common/TempFileManager.cs b/BizHawk.Common/TempFileManager.cs index 284d5034f7..895c9fef6e 100644 --- a/BizHawk.Common/TempFileManager.cs +++ b/BizHawk.Common/TempFileManager.cs @@ -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; - } \ No newline at end of file + } +} \ No newline at end of file