[geany/geany-plugins] 1b764b: geanyctags: Use proper C prototypes for functions without arguments
Colomban Wendling
git-noreply at xxxxx
Mon Oct 20 17:04:35 UTC 2014
Branch: refs/heads/master
Author: Colomban Wendling <ban at herbesfolles.org>
Committer: Jiří Techet <techet at gmail.com>
Date: Mon, 20 Oct 2014 17:04:35 UTC
Commit: 1b764ba86e2eb51a929f30a61a1144790a08a18c
https://github.com/geany/geany-plugins/commit/1b764ba86e2eb51a929f30a61a1144790a08a18c
Log Message:
-----------
geanyctags: Use proper C prototypes for functions without arguments
Modified Paths:
--------------
geanyctags/src/geanyctags.c
Modified: geanyctags/src/geanyctags.c
6 lines changed, 3 insertions(+), 3 deletions(-)
===================================================================
@@ -167,7 +167,7 @@ static void spawn_cmd(const gchar *cmd, const gchar *dir)
g_free(out);
}
-static gchar *get_tags_filename()
+static gchar *get_tags_filename(void)
{
gchar *ret = NULL;
@@ -288,7 +288,7 @@ static void show_entry(tagEntry *entry)
}
-static gchar *get_selection()
+static gchar *get_selection(void)
{
gchar *ret = NULL;
GeanyDocument *doc = document_get_current();
@@ -496,7 +496,7 @@ static void on_find_definition(GtkMenuItem *menuitem, gpointer user_data)
g_free(name);
}
-static void create_dialog_find_file()
+static void create_dialog_find_file(void)
{
GtkWidget *label, *vbox, *ebox, *entry;
GtkSizeGroup *size_group;
--------------
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