Minor naming clarification.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1197 4a71c877-e1ca-e34f-864e-861f7616d084
master
Dennis Schridde 2007-03-04 12:09:56 +00:00
parent db53487043
commit 44ee73eff2
1 changed files with 2 additions and 2 deletions

View File

@ -229,8 +229,8 @@ static void errorHandler(int sig)
{
close(gdbPipe[1]); // No output to pipe
dup2(gdbPipe[0], 0); // Input from pipe
dup2(dumpFile, 1); // Output to dumpFile
dup2(gdbPipe[0], 0); // STDIN from pipe
dup2(dumpFile, 1); // STDOUT to dumpFile
execlp("gdb", "gdb", programCommand, programPID, NULL);