[geany/geany] 64fb9f: Don't return with an argument in a function returning void

Colomban Wendling git-noreply at xxxxx
Sun Jul 12 13:27:27 UTC 2015


Branch:      refs/heads/master
Author:      Colomban Wendling <ban at herbesfolles.org>
Committer:   Colomban Wendling <ban at herbesfolles.org>
Date:        Sun, 12 Jul 2015 13:27:27 UTC
Commit:      64fb9f9a51bc1a6d406bd902161e4dd4bde8cdd4
             https://github.com/geany/geany/commit/64fb9f9a51bc1a6d406bd902161e4dd4bde8cdd4

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).


More information about the Commits mailing list