summaryrefslogtreecommitdiff
path: root/Source/Core/DebuggerWX
diff options
context:
space:
mode:
authorhrydgard <hrydgard@gmail.com>2009-03-05 22:35:06 +0000
committerhrydgard <hrydgard@gmail.com>2009-03-05 22:35:06 +0000
commit02a4b49df196471bd56cd73b46891074cbdfdc34 (patch)
tree737f0be4114aa2c6f2ecf7ade9fe28b10b950586 /Source/Core/DebuggerWX
parent3f840806b3c3504d826d29ce7c7c1d336c02adc7 (diff)
just some compiler warning cleanup.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2562 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DebuggerWX')
-rw-r--r--Source/Core/DebuggerWX/Src/CodeWindowSJP.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DebuggerWX/Src/CodeWindowSJP.cpp b/Source/Core/DebuggerWX/Src/CodeWindowSJP.cpp
index 0beaa10a25..0093a6159c 100644
--- a/Source/Core/DebuggerWX/Src/CodeWindowSJP.cpp
+++ b/Source/Core/DebuggerWX/Src/CodeWindowSJP.cpp
@@ -206,7 +206,7 @@ void CCodeWindow::OnSymbolsMenu(wxCommandEvent& event)
bool started = false;
while (!feof(f))
{
- char line[512], temp[256];
+ char line[512];
fgets(line, 511, f);
if (strlen(line) < 4)
continue;