[Groonga-commit] groonga/groonga [master] Remove needless return

アーカイブの一覧に戻る

null+****@clear***** null+****@clear*****
2012年 3月 4日 (日) 18:39:28 JST


Kouhei Sutou	2012-03-04 18:39:28 +0900 (Sun, 04 Mar 2012)

  New Revision: 12c18ff792ad468ee2a28655f1ea5479e13493a4

  Log:
    Remove needless return

  Modified files:
    lib/plugin.c

  Modified: lib/plugin.c (+1 -1)
===================================================================
--- lib/plugin.c    2012-03-04 18:38:11 +0900 (e93e635)
+++ lib/plugin.c    2012-03-04 18:39:28 +0900 (22de2fa)
@@ -436,7 +436,7 @@ void
 grn_plugin_free(grn_ctx *ctx, void *ptr, const char *file, int line,
                 const char *func)
 {
-  return grn_free(ctx, ptr, file, line, func);
+  grn_free(ctx, ptr, file, line, func);
 }
 
 /*




Groonga-commit メーリングリストの案内
アーカイブの一覧に戻る