[Groonga-commit] groonga/groonga [master] add a missing cast.

アーカイブの一覧に戻る

null+****@clear***** null+****@clear*****
2010年 7月 23日 (金) 12:32:42 JST


Kouhei Sutou	2010-07-23 03:32:42 +0000 (Fri, 23 Jul 2010)

  New Revision: 9836e2b89fee53c7ecf18b2a07a4669de12b5d89

  Log:
    add a missing cast.

  Modified files:
    lib/util.c

  Modified: lib/util.c (+1 -1)
===================================================================
--- lib/util.c    2010-07-23 03:32:28 +0000 (5c35f17)
+++ lib/util.c    2010-07-23 03:32:42 +0000 (c234e83)
@@ -380,7 +380,7 @@ grn_table_inspect(grn_ctx *ctx, grn_obj *buf, grn_obj *obj)
 
   if (obj->header.type == GRN_TABLE_PAT_KEY) {
     GRN_TEXT_PUTS(ctx, buf, " nodes:");
-    grn_pat_inspect_nodes(ctx, obj, buf);
+    grn_pat_inspect_nodes(ctx, (grn_pat *)obj, buf);
   }
 
   GRN_TEXT_PUTS(ctx, buf, ">");




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