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
281af2f9
Commit
281af2f9
authored
Mar 15, 2005
by
joerg@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Proactive compile fix (in case we ever enable "EVENT_DEBUG" on IRIX).
parent
9967ee9d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
ndb/src/ndbapi/NdbEventOperationImpl.cpp
ndb/src/ndbapi/NdbEventOperationImpl.cpp
+3
-2
No files found.
ndb/src/ndbapi/NdbEventOperationImpl.cpp
View file @
281af2f9
...
@@ -362,12 +362,13 @@ NdbEventOperationImpl::next(int *pOverrun)
...
@@ -362,12 +362,13 @@ NdbEventOperationImpl::next(int *pOverrun)
Uint32
*
aDataPtr
=
ptr
[
1
].
p
;
Uint32
*
aDataPtr
=
ptr
[
1
].
p
;
#ifdef EVENT_DEBUG
#ifdef EVENT_DEBUG
int
i
;
printf
(
"after values sz=%u
\n
"
,
ptr
[
1
].
sz
);
printf
(
"after values sz=%u
\n
"
,
ptr
[
1
].
sz
);
for
(
int
i
=
0
;
i
<
ptr
[
1
].
sz
;
i
++
)
for
(
i
=
0
;
i
<
ptr
[
1
].
sz
;
i
++
)
printf
(
"H'%.8X "
,
ptr
[
1
].
p
[
i
]);
printf
(
"H'%.8X "
,
ptr
[
1
].
p
[
i
]);
printf
(
"
\n
"
);
printf
(
"
\n
"
);
printf
(
"before values sz=%u
\n
"
,
ptr
[
2
].
sz
);
printf
(
"before values sz=%u
\n
"
,
ptr
[
2
].
sz
);
for
(
int
i
=
0
;
i
<
ptr
[
2
].
sz
;
i
++
)
for
(
i
=
0
;
i
<
ptr
[
2
].
sz
;
i
++
)
printf
(
"H'%.8X "
,
ptr
[
2
].
p
[
i
]);
printf
(
"H'%.8X "
,
ptr
[
2
].
p
[
i
]);
printf
(
"
\n
"
);
printf
(
"
\n
"
);
#endif
#endif
...
...
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