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
16113e81
Commit
16113e81
authored
Nov 24, 2004
by
bar@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
uca-dump.c:
Use less wide spaces on the primary level, to avoid big diff for ctype-uca.c.
parent
1bcb1b9d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
strings/uca-dump.c
strings/uca-dump.c
+2
-2
No files found.
strings/uca-dump.c
View file @
16113e81
...
...
@@ -269,7 +269,7 @@ int main(int ac, char **av)
*/
int
tmp
=
weight
[
i
];
if
(
w
==
2
&&
tmp
)
tmp
=
(
int
)(
0x
10
0
-
weight
[
i
]);
tmp
=
(
int
)(
0x
2
0
-
weight
[
i
]);
printf
(
"0x%04X"
,
tmp
);
...
...
@@ -304,7 +304,7 @@ int main(int ac, char **av)
const
char
*
comma
=
page
<
MY_UCA_NPAGES
-
1
?
","
:
""
;
const
char
*
nline
=
(
page
+
1
)
%
4
?
""
:
"
\n
"
;
if
(
!
pagemaxlen
[
page
])
printf
(
"NULL
%s%s"
,
comma
,
nline
);
printf
(
"NULL
%s%s%s"
,
w
?
" "
:
""
,
comma
,
nline
);
else
printf
(
"page%03Xdata%s%s%s"
,
page
,
pname
[
w
],
comma
,
nline
);
}
...
...
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