[geany/geany-plugins] 1771e3: scope: Add a missing initializer
Colomban Wendling
git-noreply at xxxxx
Fri Feb 16 04:46:59 UTC 2018
Branch: refs/heads/master
Author: Colomban Wendling <ban at herbesfolles.org>
Committer: Colomban Wendling <ban at herbesfolles.org>
Date: Fri, 16 Feb 2018 04:46:59 UTC
Commit: 1771e3b03b0b51b55ef89078f70b14411a506139
https://github.com/geany/geany-plugins/commit/1771e3b03b0b51b55ef89078f70b14411a506139
Log Message:
-----------
scope: Add a missing initializer
This doesn't change behavior, just better follows style.
Modified Paths:
--------------
scope/src/scope.c
Modified: scope/src/scope.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -166,7 +166,7 @@ static ToolItem toolbar_items[] =
{ STEP_OUT_KB, { "small_step_out_icon", "large_step_out_icon" }, NULL, N_("Step out") },
{ TERMINATE_KB, { "small_terminate_icon", "large_terminate_icon" }, NULL, N_("Terminate") },
{ BREAKPOINT_KB, { "small_breakpoint_icon", "large_breakpoint_icon", }, NULL, N_("Toggle breakpoint") },
- { -1, { NULL, NULL }, NULL }
+ { -1, { NULL, NULL }, NULL, NULL }
};
static void on_toolbar_button_clicked(G_GNUC_UNUSED GtkToolButton *toolbutton, gpointer gdata)
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
More information about the Plugins-Commits
mailing list