Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
5b35bb91
Commit
5b35bb91
authored
Apr 07, 2010
by
csun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
branches/zip: fix compiler errors on Windows.
Move ut_ad() to after declarations for C file.
parent
445c8847
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
ha/ha0ha.c
ha/ha0ha.c
+2
-2
No files found.
ha/ha0ha.c
View file @
5b35bb91
...
@@ -403,8 +403,6 @@ ha_print_info(
...
@@ -403,8 +403,6 @@ ha_print_info(
FILE
*
file
,
/*!< in: file where to print */
FILE
*
file
,
/*!< in: file where to print */
hash_table_t
*
table
)
/*!< in: hash table */
hash_table_t
*
table
)
/*!< in: hash table */
{
{
ut_ad
(
table
);
ut_ad
(
table
->
magic_n
==
HASH_TABLE_MAGIC_N
);
#ifdef UNIV_DEBUG
#ifdef UNIV_DEBUG
/* Some of the code here is disabled for performance reasons in production
/* Some of the code here is disabled for performance reasons in production
builds, see http://bugs.mysql.com/36941 */
builds, see http://bugs.mysql.com/36941 */
...
@@ -418,6 +416,8 @@ builds, see http://bugs.mysql.com/36941 */
...
@@ -418,6 +416,8 @@ builds, see http://bugs.mysql.com/36941 */
#endif
/* PRINT_USED_CELLS */
#endif
/* PRINT_USED_CELLS */
ulint
n_bufs
;
ulint
n_bufs
;
ut_ad
(
table
);
ut_ad
(
table
->
magic_n
==
HASH_TABLE_MAGIC_N
);
#ifdef PRINT_USED_CELLS
#ifdef PRINT_USED_CELLS
for
(
i
=
0
;
i
<
hash_get_n_cells
(
table
);
i
++
)
{
for
(
i
=
0
;
i
<
hash_get_n_cells
(
table
);
i
++
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment