mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-26 22:07:58 +08:00
2007-07-27 Michael Snyder <msnyder@access-company.com>
* tui/tui-data.c (tui_alloc_generic_win_info): Wrong arg for sizeof.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2007-07-27 Michael Snyder <msnyder@access-company.com>
|
||||||
|
|
||||||
|
* tui/tui-data.c (tui_alloc_generic_win_info): Wrong arg for sizeof.
|
||||||
|
|
||||||
2007-07-26 Maciej W. Rozycki <macro@linux-mips.org>
|
2007-07-26 Maciej W. Rozycki <macro@linux-mips.org>
|
||||||
|
|
||||||
* MAINTAINERS (Write After Approval): Add myself.
|
* MAINTAINERS (Write After Approval): Add myself.
|
||||||
|
@ -450,7 +450,7 @@ tui_alloc_generic_win_info (void)
|
|||||||
struct tui_gen_win_info * win;
|
struct tui_gen_win_info * win;
|
||||||
|
|
||||||
if ((win = (struct tui_gen_win_info *) xmalloc (
|
if ((win = (struct tui_gen_win_info *) xmalloc (
|
||||||
sizeof (struct tui_gen_win_info *))) != (struct tui_gen_win_info *) NULL)
|
sizeof (struct tui_gen_win_info))) != (struct tui_gen_win_info *) NULL)
|
||||||
tui_init_generic_part (win);
|
tui_init_generic_part (win);
|
||||||
|
|
||||||
return win;
|
return win;
|
||||||
|
Reference in New Issue
Block a user