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
718efc39
Commit
718efc39
authored
May 10, 2004
by
tomas@mc05.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make warning fixes for ndb
parent
62565bed
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
ndb/src/common/util/strlcat.c
ndb/src/common/util/strlcat.c
+1
-1
ndb/src/mgmsrv/CommandInterpreter.cpp
ndb/src/mgmsrv/CommandInterpreter.cpp
+1
-1
ndb/src/ndbapi/NdbSchemaOp.cpp
ndb/src/ndbapi/NdbSchemaOp.cpp
+2
-2
No files found.
ndb/src/common/util/strlcat.c
View file @
718efc39
...
...
@@ -39,7 +39,7 @@
/* RCSID("$KTH: strlcat.c,v 1.1 2000/08/16 01:23:47 lha Exp $"); */
/
/#include <NdbString.h>
/
*#include <NdbString.h>*/
#ifndef HAVE_STRLCAT
size_t
...
...
ndb/src/mgmsrv/CommandInterpreter.cpp
View file @
718efc39
...
...
@@ -646,7 +646,7 @@ versionCallback(int nodeId, int version, void * anyData, int errCode){
}
break
;
case
NDB_MGM_NODE_TYPE_UNKNOWN
:
a
ssert
(
0
);
a
bort
(
);
};
}
else
{
...
...
ndb/src/ndbapi/NdbSchemaOp.cpp
View file @
718efc39
...
...
@@ -140,8 +140,8 @@ NdbSchemaOp::createAttribute( const char* anAttrName,
case
String
:
col
.
setType
(
NdbDictionary
::
Column
::
Char
);
break
;
default
:
a
ssert
(
0
);
case
NoAttrTypeDef
:
a
bort
(
);
}
col
.
setLength
(
anArraySize
);
col
.
setNullable
(
nullable
);
...
...
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