Branch: refs/heads/master Author: Colomban Wendling ban@herbesfolles.org Committer: Colomban Wendling ban@herbesfolles.org Date: Sun, 12 Jul 2015 13:27:27 UTC Commit: 64fb9f9a51bc1a6d406bd902161e4dd4bde8cdd4 https://github.com/geany/geany/commit/64fb9f9a51bc1a6d406bd902161e4dd4bde8cd...
Log Message: ----------- Don't return with an argument in a function returning void
Modified Paths: -------------- src/search.c
Modified: src/search.c 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -1833,13 +1833,13 @@ static void read_fif_io(gchar *msg, GIOCondition condition, gchar *enc, gint msg
static void search_read_io(GString *string, GIOCondition condition, gpointer data) { - return read_fif_io(string->str, condition, data, COLOR_BLACK); + read_fif_io(string->str, condition, data, COLOR_BLACK); }
static void search_read_io_stderr(GString *string, GIOCondition condition, gpointer data) { - return read_fif_io(string->str, condition, data, COLOR_DARK_RED); + read_fif_io(string->str, condition, data, COLOR_DARK_RED); }
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).