[Groonga-commit] pgroonga/pgroonga at 58af21d [master] Fix style

Back to archive index

Kouhei Sutou null+****@clear*****
Sun Jan 18 17:13:24 JST 2015


Kouhei Sutou	2015-01-18 17:13:24 +0900 (Sun, 18 Jan 2015)

  New Revision: 58af21d94aff37755babcfe27e742e4e6f2e10d0
  https://github.com/pgroonga/pgroonga/commit/58af21d94aff37755babcfe27e742e4e6f2e10d0

  Message:
    Fix style

  Modified files:
    pgroonga.c

  Modified: pgroonga.c (+6 -6)
===================================================================
--- pgroonga.c    2015-01-18 00:29:54 +0900 (a9df422)
+++ pgroonga.c    2015-01-18 17:13:24 +0900 (651f991)
@@ -201,12 +201,12 @@ GrnCheck(const char *message)
 static grn_builtin_type
 GrnGetType(Relation index, AttrNumber n)
 {
-	FmgrInfo	*function;
-	TupleDesc	 desc = RelationGetDescr(index);
-	Datum		 type;
+	FmgrInfo *function;
+	TupleDesc desc = RelationGetDescr(index);
+	Datum type;
 
 	function = index_getprocinfo(index, n + 1, GrnTypeOfProc);
-	type	 = FunctionCall2(function,
+	type = FunctionCall2(function,
 						 ObjectIdGetDatum(desc->attrs[n]->atttypid),
 						 Int32GetDatum(desc->attrs[n]->atttypmod));
 	return (grn_builtin_type) DatumGetInt32(type);
@@ -215,7 +215,7 @@ GrnGetType(Relation index, AttrNumber n)
 static void
 GrnSetValue(Relation index, AttrNumber n, grn_obj *buffer, Datum value)
 {
-	FmgrInfo	*function;
+	FmgrInfo *function;
 
 	function = index_getprocinfo(index, n + 1, GrnSetValueProc);
 	FunctionCall3(function,
@@ -226,7 +226,7 @@ GrnSetValue(Relation index, AttrNumber n, grn_obj *buffer, Datum value)
 static void
 GrnGetValue(Relation index, AttrNumber n, Datum value, grn_obj *buffer)
 {
-	FmgrInfo	*function;
+	FmgrInfo *function;
 
 	function = index_getprocinfo(index, n + 1, GrnGetValueProc);
 	FunctionCall3(function,
-------------- next part --------------
HTML����������������������������...
Download 



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