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
fb9e01d3
Commit
fb9e01d3
authored
Nov 03, 2004
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge joreland@bk-internal.mysql.com:/home/bk/mysql-4.1
into mysql.com:/home/jonas/src/mysql-4.1
parents
60d1fbc9
78c4faa2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
include/my_list.h
include/my_list.h
+2
-2
tests/client_test.c
tests/client_test.c
+0
-1
No files found.
include/my_list.h
View file @
fb9e01d3
...
...
@@ -33,8 +33,8 @@ extern LIST *list_delete(LIST *root,LIST *element);
extern
LIST
*
list_cons
(
void
*
data
,
LIST
*
root
);
extern
LIST
*
list_reverse
(
LIST
*
root
);
extern
void
list_free
(
LIST
*
root
,
unsigned
int
free_data
);
extern
unsigned
int
list_length
(
LIST
*
list
);
extern
int
list_walk
(
LIST
*
list
,
list_walk_action
action
,
gptr
argument
);
extern
unsigned
int
list_length
(
LIST
*
);
extern
int
list_walk
(
LIST
*
,
list_walk_action
action
,
gptr
argument
);
#define rest(a) ((a)->next)
#define list_push(a,b) (a)=list_cons((b),(a))
...
...
tests/client_test.c
View file @
fb9e01d3
...
...
@@ -815,7 +815,6 @@ static my_bool thread_query(char *query)
static
void
test_debug_example
()
{
DBUG_ENTER
(
"fill_tables"
);
int
rc
;
MYSQL_RES
*
result
;
...
...
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