[Groonga-mysql-commit] mroonga/mroonga [fix-for-visual-studio] fix type.

Back to archive index

Kouhei Sutou null+****@clear*****
Thu Oct 4 10:34:44 JST 2012


Kouhei Sutou	2011-08-12 12:35:29 +0900 (Fri, 12 Aug 2011)

  New Revision: 803cf5a44a06bfa7dbae927513f9e1e8f1e3d854
  https://github.com/mroonga/mroonga/commit/803cf5a44a06bfa7dbae927513f9e1e8f1e3d854

  Log:
    fix type.

  Modified files:
    ha_mroonga.cc

  Modified: ha_mroonga.cc (+4 -4)
===================================================================
--- ha_mroonga.cc    2011-08-12 12:17:11 +0900 (dcbfc87)
+++ ha_mroonga.cc    2011-08-12 12:35:29 +0900 (b5e8926)
@@ -1063,14 +1063,14 @@ ulonglong ha_mroonga::table_flags() const
 {
   MRN_DBUG_ENTER_METHOD();
 
-  int error;
+  ulonglong flags;
   if (wrap_handler && share && share->wrapper_mode) {
-    error = wrapper_table_flags();
+    flags = wrapper_table_flags();
   } else {
-    error = storage_table_flags();
+    flags = storage_table_flags();
   }
 
-  DBUG_RETURN(error);
+  DBUG_RETURN(flags);
 }
 
 ulong ha_mroonga::wrapper_index_flags(uint idx, uint part, bool all_parts) const
-------------- next part --------------
HTML����������������������������...
Download 



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