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
5181a33e
Commit
5181a33e
authored
May 05, 2004
by
tomas@mc05.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix ndberror after jonas comments
parent
420814fa
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
ndb/include/ndbapi/NdbError.hpp
ndb/include/ndbapi/NdbError.hpp
+1
-1
ndb/include/ndbapi/ndberror.h
ndb/include/ndbapi/ndberror.h
+2
-2
No files found.
ndb/include/ndbapi/NdbError.hpp
View file @
5181a33e
...
...
@@ -206,7 +206,7 @@ struct NdbError {
message
=
0
;
details
=
0
;
}
NdbError
(
ndberror_struct
ndberror
){
NdbError
(
const
ndberror_struct
&
ndberror
){
status
=
(
NdbError
::
Status
)
ndberror
.
status
;
classification
=
(
NdbError
::
Classification
)
ndberror
.
classification
;
code
=
ndberror
.
code
;
...
...
ndb/include/ndbapi/ndberror.h
View file @
5181a33e
...
...
@@ -88,8 +88,8 @@ typedef struct {
typedef
ndberror_status_enum
ndberror_status
;
typedef
ndberror_classification_enum
ndberror_classification
;
const
char
*
ndberror_status_message
(
const
ndberror_status
);
const
char
*
ndberror_classification_message
(
const
ndberror_classification
);
const
char
*
ndberror_status_message
(
ndberror_status
);
const
char
*
ndberror_classification_message
(
ndberror_classification
);
void
ndberror_update
(
ndberror_struct
*
);
int
ndb_error_string
(
int
err_no
,
char
*
str
,
size_t
size
);
...
...
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