Remove useless variable int i in backtrace_command_1

value of int i was not used in the loop or after the loop.
Pushed as obvious.
This commit is contained in:
Philippe Waroquiers 2018-05-19 08:54:44 +02:00
parent 50c65c2d60
commit 59f66be3ac
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2018-05-19 Philippe Waroquiers <philippe.waroquiers@skynet.be>
* stack.c (backtrace_command_1): Remove useless variable int i.
2018-05-19 Philippe Waroquiers <philippe.waroquiers@skynet.be>
* stack.c (print_frame_info): Fix comment.

View File

@ -1696,7 +1696,6 @@ backtrace_command_1 (const char *count_exp, frame_filter_flags flags,
{
struct frame_info *fi;
int count;
int i;
int py_start = 0, py_end = 0;
enum ext_lang_bt_status result = EXT_LANG_BT_ERROR;
@ -1779,7 +1778,7 @@ backtrace_command_1 (const char *count_exp, frame_filter_flags flags,
count = -1;
}
for (i = 0, fi = trailing; fi && count--; i++, fi = get_prev_frame (fi))
for (fi = trailing; fi && count--; fi = get_prev_frame (fi))
{
QUIT;