From 34b4a51973726bdef9e88deb38e0a7625fb6b4ec Mon Sep 17 00:00:00 2001 From: hrydgard Date: Sat, 28 Feb 2009 08:38:37 +0000 Subject: [PATCH] add missing ; git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2466 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Common/Src/FileUtil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Common/Src/FileUtil.cpp b/Source/Core/Common/Src/FileUtil.cpp index 5fbbed993d..617fd35a75 100644 --- a/Source/Core/Common/Src/FileUtil.cpp +++ b/Source/Core/Common/Src/FileUtil.cpp @@ -289,7 +289,7 @@ bool Copy(const char *srcFilename, const char *destFilename) } // write output - int wnum = fwrite(buffer, sizeof(char), rnum, output) + int wnum = fwrite(buffer, sizeof(char), rnum, output); if (wnum != rnum) { ERROR_LOG(COMMON,