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
c3c7ac14
Commit
c3c7ac14
authored
Oct 16, 2006
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge chilla.local:/home/mydev/mysql-5.1--team
into chilla.local:/home/mydev/mysql-5.1-ateam
parents
0b9572e8
e63e690f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
storage/myisam/myisampack.c
storage/myisam/myisampack.c
+3
-3
No files found.
storage/myisam/myisampack.c
View file @
c3c7ac14
...
@@ -1965,7 +1965,7 @@ static char *bindigits(ulonglong value, uint bits)
...
@@ -1965,7 +1965,7 @@ static char *bindigits(ulonglong value, uint bits)
DBUG_ASSERT
(
idx
<
sizeof
(
digits
));
DBUG_ASSERT
(
idx
<
sizeof
(
digits
));
while
(
idx
)
while
(
idx
)
*
(
ptr
++
)
=
'0'
+
((
value
>>
(
--
idx
))
&
1
);
*
(
ptr
++
)
=
'0'
+
((
char
)
(
value
>>
(
--
idx
))
&
(
char
)
1
);
*
ptr
=
'\0'
;
*
ptr
=
'\0'
;
return
digits
;
return
digits
;
}
}
...
@@ -1995,7 +1995,7 @@ static char *hexdigits(ulonglong value)
...
@@ -1995,7 +1995,7 @@ static char *hexdigits(ulonglong value)
DBUG_ASSERT
(
idx
<
sizeof
(
digits
));
DBUG_ASSERT
(
idx
<
sizeof
(
digits
));
while
(
idx
)
while
(
idx
)
{
{
if
((
*
(
ptr
++
)
=
'0'
+
((
value
>>
(
4
*
(
--
idx
)))
&
0xf
))
>
'9'
)
if
((
*
(
ptr
++
)
=
'0'
+
((
char
)
(
value
>>
(
4
*
(
--
idx
)))
&
(
char
)
0xf
))
>
'9'
)
*
(
ptr
-
1
)
+=
'a'
-
'9'
-
1
;
*
(
ptr
-
1
)
+=
'a'
-
'9'
-
1
;
}
}
*
ptr
=
'\0'
;
*
ptr
=
'\0'
;
...
@@ -2284,7 +2284,7 @@ static my_off_t write_huff_tree(HUFF_TREE *huff_tree, uint trees)
...
@@ -2284,7 +2284,7 @@ static my_off_t write_huff_tree(HUFF_TREE *huff_tree, uint trees)
errors
++
;
errors
++
;
break
;
break
;
}
}
idx
+=
code
&
1
;
idx
+=
(
uint
)
code
&
1
;
if
(
idx
>=
length
)
if
(
idx
>=
length
)
{
{
VOID
(
fflush
(
stdout
));
VOID
(
fflush
(
stdout
));
...
...
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