[Groonga-commit] groonga/groonga at 6ba9e60 [master] Fix indent

Back to archive index

Kouhei Sutou null+****@clear*****
Fri Jan 15 15:16:30 JST 2016


Kouhei Sutou	2016-01-15 15:16:30 +0900 (Fri, 15 Jan 2016)

  New Revision: 6ba9e604c0992908d2ab7fae219127ec251f8d9c
  https://github.com/groonga/groonga/commit/6ba9e604c0992908d2ab7fae219127ec251f8d9c

  Message:
    Fix indent

  Modified files:
    lib/expr.c

  Modified: lib/expr.c (+3 -3)
===================================================================
--- lib/expr.c    2016-01-14 23:20:52 +0900 (a0543e0)
+++ lib/expr.c    2016-01-15 15:16:30 +0900 (02aa2ca)
@@ -1,6 +1,6 @@
 /* -*- c-basic-offset: 2 -*- */
 /*
-  Copyright(C) 2010-2015 Brazil
+  Copyright(C) 2010-2016 Brazil
 
   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
@@ -771,8 +771,8 @@ grn_expr_append_obj(grn_ctx *ctx, grn_obj *expr, grn_obj *obj, grn_operator op,
     size_t n_bytes = sizeof(grn_expr_code) * new_codes_size;
     grn_expr_code *new_codes = (grn_expr_code *)GRN_REALLOC(e->codes, n_bytes);
     if (!new_codes) {
-	    ERR(GRN_NO_MEMORY_AVAILABLE, "stack is full");
-	    goto exit;
+      ERR(GRN_NO_MEMORY_AVAILABLE, "stack is full");
+      goto exit;
     }
     e->codes = new_codes;
     e->codes_size = new_codes_size;
-------------- next part --------------
HTML����������������������������...
Download 



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