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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
4caf57c3
Commit
4caf57c3
authored
Nov 17, 2001
by
serg@serg.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bugfix
parent
ced56f7d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
mysys/queues.c
mysys/queues.c
+3
-3
No files found.
mysys/queues.c
View file @
4caf57c3
...
...
@@ -167,11 +167,11 @@ void _downheap(register QUEUE *queue, uint idx)
}
static
int
queue_fix_cmp
(
QUEUE
*
queue
,
void
*
a
,
void
*
b
)
static
int
queue_fix_cmp
(
QUEUE
*
queue
,
void
*
*
a
,
void
*
*
b
)
{
return
queue
->
compare
(
queue
->
first_cmp_arg
,
(
char
*
)
a
+
queue
->
offset_to_key
,
(
char
*
)
b
+
queue
->
offset_to_key
);
(
char
*
)
(
*
a
)
+
queue
->
offset_to_key
,
(
char
*
)
(
*
b
)
+
queue
->
offset_to_key
);
}
/* Fix heap when every element was changed */
...
...
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