Skip to content

Commit

Permalink
try to fix stlink-org#666 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
slyshykO committed Feb 15, 2018
1 parent fbd55d9 commit 0717289
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/tools/gui/stlink-gui.c
Original file line number Diff line number Diff line change
Expand Up @@ -224,11 +224,14 @@ stlink_gui_update_devmem_view (STlinkGUI *gui)


static void
stlink_gui_populate_devmem_view (STlinkGUI *gui)
stlink_gui_populate_devmem_view (gpointer data)
{
guint off;
stm32_addr_t addr;

g_return_if_fail (STLINK_IS_GUI (data));
STlinkGUI *gui = (STlinkGUI *)data;

g_return_if_fail (gui != NULL);
g_return_if_fail (gui->sl != NULL);

Expand Down

0 comments on commit 0717289

Please sign in to comment.