Commit 87bdc84d authored by Roel Kluin's avatar Roel Kluin Committed by james toy

In the case of an error, output_buffer gets an E0X value. E03 was set in

two.
Signed-off-by: default avatarRoel Kluin <roel.kluin@gmail.com>
Cc: David Howells <dhowells@redhat.com>
Cc: Jason Wessel <jason.wessel@windriver.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent ef006379
......@@ -1880,7 +1880,7 @@ void gdbstub(int sigval)
}
if (temp >= 5) {
gdbstub_strcpy(output_buffer,"E03");
gdbstub_strcpy(output_buffer,"E02");
break;
}
......@@ -1908,7 +1908,7 @@ void gdbstub(int sigval)
}
if (temp >= 5) {
gdbstub_strcpy(output_buffer,"E03");
gdbstub_strcpy(output_buffer,"E02");
break;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment