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
53e85a27
Commit
53e85a27
authored
Sep 15, 2004
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed compiler warnings
parent
f955763f
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
13 additions
and
13 deletions
+13
-13
ndb/src/common/debugger/DebuggerNames.cpp
ndb/src/common/debugger/DebuggerNames.cpp
+3
-3
ndb/src/common/logger/SysLogHandler.cpp
ndb/src/common/logger/SysLogHandler.cpp
+1
-1
ndb/src/common/portlib/NdbTCP.cpp
ndb/src/common/portlib/NdbTCP.cpp
+1
-1
ndb/src/common/util/getarg.c
ndb/src/common/util/getarg.c
+3
-3
ndb/src/common/util/random.c
ndb/src/common/util/random.c
+3
-3
ndb/src/common/util/version.c
ndb/src/common/util/version.c
+1
-1
ndb/src/ndbapi/NdbRecAttr.cpp
ndb/src/ndbapi/NdbRecAttr.cpp
+1
-1
No files found.
ndb/src/common/debugger/DebuggerNames.cpp
View file @
53e85a27
...
...
@@ -29,7 +29,7 @@ static const char * localBlockNames[NO_OF_BLOCKS];
static
int
initSignalNames
(
const
char
*
dst
[],
const
GsnName
src
[],
unsigned
short
len
){
int
i
;
unsigned
i
;
for
(
i
=
0
;
i
<=
MAX_GSN
;
i
++
)
dst
[
i
]
=
0
;
...
...
@@ -55,7 +55,7 @@ int
initSignalPrinters
(
SignalDataPrintFunction
dst
[],
const
NameFunctionPair
src
[],
unsigned
short
len
){
int
i
;
unsigned
i
;
for
(
i
=
0
;
i
<=
MAX_GSN
;
i
++
)
dst
[
i
]
=
0
;
...
...
@@ -81,7 +81,7 @@ int
initBlockNames
(
const
char
*
dst
[],
const
BlockName
src
[],
unsigned
len
){
int
i
;
unsigned
i
;
for
(
i
=
0
;
i
<
NO_OF_BLOCKS
;
i
++
)
dst
[
i
]
=
0
;
...
...
ndb/src/common/logger/SysLogHandler.cpp
View file @
53e85a27
...
...
@@ -113,7 +113,7 @@ SysLogHandler::setParam(const BaseString ¶m, const BaseString &value) {
}
static
const
struct
syslog_facility
{
char
*
name
;
c
onst
c
har
*
name
;
int
value
;
}
facilitynames
[]
=
{
{
"auth"
,
LOG_AUTH
},
...
...
ndb/src/common/portlib/NdbTCP.cpp
View file @
53e85a27
...
...
@@ -39,7 +39,7 @@ Ndb_getInAddr(struct in_addr * dst, const char *address) {
/* Try it as aaa.bbb.ccc.ddd. */
dst
->
s_addr
=
inet_addr
(
address
);
if
(
dst
->
s_addr
!=
-
1
)
{
if
(
dst
->
s_addr
!=
INADDR_NONE
)
{
return
0
;
}
return
-
1
;
...
...
ndb/src/common/util/getarg.c
View file @
53e85a27
...
...
@@ -494,7 +494,7 @@ arg_match_short (struct getargs *args, size_t num_args,
optarg
=
&
argv
[
j
+
1
];
else
{
++*
optind
;
optarg
=
rargv
[
*
optind
];
optarg
=
(
char
*
)
rargv
[
*
optind
];
}
if
(
optarg
==
NULL
)
{
--*
optind
;
...
...
@@ -545,10 +545,10 @@ getarg(struct getargs *args, size_t num_args,
i
++
;
break
;
}
ret
=
arg_match_long
(
args
,
num_args
,
argv
[
i
]
+
2
,
ret
=
arg_match_long
(
args
,
num_args
,
(
char
*
)
argv
[
i
]
+
2
,
argc
,
argv
,
&
i
);
}
else
{
ret
=
arg_match_short
(
args
,
num_args
,
argv
[
i
],
ret
=
arg_match_short
(
args
,
num_args
,
(
char
*
)
argv
[
i
],
argc
,
argv
,
&
i
);
}
if
(
ret
)
...
...
ndb/src/common/util/random.c
View file @
53e85a27
...
...
@@ -154,8 +154,8 @@ static void localRandom48(DRand48Data *buffer, long int *result)
static
void
shuffleSequence
(
RandomSequence
*
seq
)
{
int
i
;
int
j
;
unsigned
int
i
;
unsigned
int
j
;
unsigned
int
tmp
;
if
(
!
seq
)
return
;
...
...
@@ -254,7 +254,7 @@ unsigned int getNextRandom(RandomSequence *seq)
void
printSequence
(
RandomSequence
*
seq
,
unsigned
int
numPerRow
)
{
int
i
;
unsigned
int
i
;
if
(
!
seq
)
return
;
...
...
ndb/src/common/util/version.c
View file @
53e85a27
...
...
@@ -135,7 +135,7 @@ ndbSearchUpgradeCompatibleTable(Uint32 ownVersion, Uint32 otherVersion,
int
i
;
for
(
i
=
0
;
table
[
i
].
ownVersion
!=
0
&&
table
[
i
].
otherVersion
!=
0
;
i
++
)
{
if
(
table
[
i
].
ownVersion
==
ownVersion
||
table
[
i
].
ownVersion
==
~
0
)
{
table
[
i
].
ownVersion
==
(
Uint32
)
~
0
)
{
switch
(
table
[
i
].
matchType
)
{
case
UG_Range
:
if
(
otherVersion
>=
table
[
i
].
otherVersion
){
...
...
ndb/src/ndbapi/NdbRecAttr.cpp
View file @
53e85a27
...
...
@@ -230,7 +230,7 @@ NdbOut& operator<<(NdbOut& out, const NdbRecAttr &r)
}
break
;
default:
/* no print functions for the rest, just print type */
out
<<
r
.
getType
();
out
<<
(
int
)
r
.
getType
();
j
=
r
.
arraySize
();
if
(
j
>
1
)
out
<<
" "
<<
j
<<
" times"
;
...
...
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