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
029a4412
Commit
029a4412
authored
Aug 30, 2001
by
monty@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Plain Diff
Merge work:/home/bk/mysql into hundin.mysql.fi:/my/bk/mysql
parents
8e668c3c
6000cd21
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
dbug/dbug.c
dbug/dbug.c
+1
-1
include/heap.h
include/heap.h
+2
-2
strings/conf_to_src.c
strings/conf_to_src.c
+2
-2
No files found.
dbug/dbug.c
View file @
029a4412
...
...
@@ -1365,7 +1365,7 @@ uint _line_)
#ifdef THREAD
(
void
)
fprintf
(
_db_fp_
,
"%-7s: "
,
my_thread_name
());
#else
(
void
)
fprintf
(
_db_fp_
,
"%5d: "
,
getpid
());
(
void
)
fprintf
(
_db_fp_
,
"%5d: "
,
(
int
)
getpid
());
#endif
}
if
(
stack
->
flags
&
NUMBER_ON
)
{
...
...
include/heap.h
View file @
029a4412
...
...
@@ -112,13 +112,13 @@ typedef struct st_heap_share
LIST
open_list
;
}
HP_SHARE
;
struct
st_hash_info
;
struct
st_h
p_h
ash_info
;
typedef
struct
st_heap_info
{
HP_SHARE
*
s
;
byte
*
current_ptr
;
struct
st_hash_info
*
current_hash_ptr
;
struct
st_h
p_h
ash_info
*
current_hash_ptr
;
ulong
current_record
,
next_block
;
int
lastinx
,
errkey
;
int
mode
;
/* Mode of file (READONLY..) */
...
...
strings/conf_to_src.c
View file @
029a4412
...
...
@@ -80,7 +80,7 @@ print_array(FILE *f, const char *set, const char *name, int n)
endptr
=
p
;
for
(;;)
{
while
(
isspace
(
*
endptr
))
while
(
isspace
(
(
*
(
unsigned
char
*
)
endptr
)
))
++
endptr
;
if
(
*
endptr
&&
*
endptr
!=
'#'
)
/* not comment */
break
;
...
...
@@ -90,7 +90,7 @@ print_array(FILE *f, const char *set, const char *name, int n)
}
p
=
val
;
while
(
!
isspace
(
*
endptr
))
while
(
!
isspace
(
(
*
(
unsigned
char
*
)
endptr
)
))
*
p
++
=
*
endptr
++
;
*
p
=
'\0'
;
p
=
endptr
;
...
...
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