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
d207867c
Commit
d207867c
authored
Oct 09, 2007
by
tsmith@ramayana.hindu.god
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compiler warning (use correct data type)
parent
d5740ef0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
client/mysqltest.c
client/mysqltest.c
+2
-1
No files found.
client/mysqltest.c
View file @
d207867c
...
@@ -1562,7 +1562,8 @@ void check_result(DYNAMIC_STRING* ds)
...
@@ -1562,7 +1562,8 @@ void check_result(DYNAMIC_STRING* ds)
Result mismatched, dump results to .reject file
Result mismatched, dump results to .reject file
and then show the diff
and then show the diff
*/
*/
char
reject_file
[
FN_REFLEN
],
reject_length
;
char
reject_file
[
FN_REFLEN
];
size_t
reject_length
;
dirname_part
(
reject_file
,
result_file_name
,
&
reject_length
);
dirname_part
(
reject_file
,
result_file_name
,
&
reject_length
);
if
(
access
(
reject_file
,
W_OK
)
==
0
)
if
(
access
(
reject_file
,
W_OK
)
==
0
)
...
...
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