diff options
author | unknown <tomas@mc05.(none)> | 2004-05-07 08:39:42 +0200 |
---|---|---|
committer | unknown <tomas@mc05.(none)> | 2004-05-07 08:39:42 +0200 |
commit | eef6e474ad04f8f6c57735396a0d833bafeaa726 (patch) | |
tree | 3ab627029960d3dc4eecaa863f6cac3d29c87ac0 /ndb/include/ndbapi/NdbEventOperation.hpp | |
parent | 789adced2bb4d72f3bf2cdf66870a11718d9cf95 (diff) | |
download | mariadb-git-eef6e474ad04f8f6c57735396a0d833bafeaa726.tar.gz |
introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib
Diffstat (limited to 'ndb/include/ndbapi/NdbEventOperation.hpp')
-rw-r--r-- | ndb/include/ndbapi/NdbEventOperation.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ndb/include/ndbapi/NdbEventOperation.hpp b/ndb/include/ndbapi/NdbEventOperation.hpp index 911b00b02c4..056e9a58c74 100644 --- a/ndb/include/ndbapi/NdbEventOperation.hpp +++ b/ndb/include/ndbapi/NdbEventOperation.hpp @@ -157,8 +157,8 @@ public: * the attribute, or a NULL pointer * (indicating error). */ - NdbRecAttr *getValue(const char *anAttrName, char *aValue = NULL); - NdbRecAttr *getPreValue(const char *anAttrName, char *aValue = NULL); + NdbRecAttr *getValue(const char *anAttrName, char *aValue = 0); + NdbRecAttr *getPreValue(const char *anAttrName, char *aValue = 0); /** * Retrieves event resultset if available, inserted into the NdbRecAttrs @@ -172,7 +172,7 @@ public: * overflow and *pOverRun will indicate the number of events that have * overwritten. */ - int next(int *pOverRun=NULL); + int next(int *pOverRun=0); /** * In the current implementation a nodefailiure may cause loss of events, |