[Groonga-commit] groonga/groonga at 15b6bbf [master] mrb: use meaningful name instead of general "ptr"

Back to archive index

Kouhei Sutou null+****@clear*****
Thu Oct 10 21:57:59 JST 2013


Kouhei Sutou	2013-10-10 21:57:59 +0900 (Thu, 10 Oct 2013)

  New Revision: 15b6bbfdb9192a02b25ca086b739a161fda0f689
  https://github.com/groonga/groonga/commit/15b6bbfdb9192a02b25ca086b739a161fda0f689

  Message:
    mrb: use meaningful name instead of general "ptr"

  Modified files:
    lib/mrb/mrb_expr.c

  Modified: lib/mrb/mrb_expr.c (+4 -4)
===================================================================
--- lib/mrb/mrb_expr.c    2013-10-10 21:47:55 +0900 (4681f01)
+++ lib/mrb/mrb_expr.c    2013-10-10 21:57:59 +0900 (c5ba4b9)
@@ -33,17 +33,17 @@ static struct mrb_data_type mrb_grn_scan_info_type = { "Groonga::ScanInfo", NULL
 static struct mrb_data_type mrb_grn_expr_code_type = { "Groonga::ExpressionCode", NULL };
 
 static mrb_value
-mrb_grn_scan_info_new(mrb_state *mrb, scan_info *ptr)
+mrb_grn_scan_info_new(mrb_state *mrb, scan_info *scan_info)
 {
   grn_ctx *ctx = (grn_ctx *)mrb->ud;
   struct RClass *module = ctx->impl->mrb.module;
   struct RClass *klass;
-  mrb_value mrb_ptr;
+  mrb_value mrb_scan_info;
 
-  mrb_ptr = mrb_cptr_value(mrb, ptr);
+  mrb_scan_info = mrb_cptr_value(mrb, scan_info);
   klass = mrb_class_ptr(mrb_const_get(mrb, mrb_obj_value(module),
                                       mrb_intern(mrb, "ScanInfo")));
-  return mrb_obj_new(mrb, klass, 1, &mrb_ptr);
+  return mrb_obj_new(mrb, klass, 1, &mrb_scan_info);
 }
 
 static mrb_value
-------------- next part --------------
HTML����������������������������...
下载 



More information about the Groonga-commit mailing list
Back to archive index