diff options
author | unknown <tomas@poseidon.ndb.mysql.com> | 2004-10-20 13:42:41 +0000 |
---|---|---|
committer | unknown <tomas@poseidon.ndb.mysql.com> | 2004-10-20 13:42:41 +0000 |
commit | e4a86f3237783b356eb448952ae11c292c12006c (patch) | |
tree | bd85bda937436c38cfeb5846ed1cad5d2371195d /ndb/src/ndbapi/NdbBlob.cpp | |
parent | 2da1cbd97dd566d629115f02321ab36aac069ce4 (diff) | |
download | mariadb-git-e4a86f3237783b356eb448952ae11c292c12006c.tar.gz |
compile warning fixes
mysql-test/ndb/ndbcluster.sh:
corrected shell test syntax
Diffstat (limited to 'ndb/src/ndbapi/NdbBlob.cpp')
-rw-r--r-- | ndb/src/ndbapi/NdbBlob.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ndb/src/ndbapi/NdbBlob.cpp b/ndb/src/ndbapi/NdbBlob.cpp index 6172e7076eb..feab95d8ca5 100644 --- a/ndb/src/ndbapi/NdbBlob.cpp +++ b/ndb/src/ndbapi/NdbBlob.cpp @@ -1440,11 +1440,11 @@ NdbOut& operator<<(NdbOut& out, const NdbBlob& blob) { ndbout << dec << "o=" << blob.getOperationType(); - ndbout << dec << " s=" << blob.theState; + ndbout << dec << " s=" << (Uint32) blob.theState; ndbout << dec << " n=" << blob.theNullFlag;; ndbout << dec << " l=" << blob.theLength; ndbout << dec << " p=" << blob.thePos; - ndbout << dec << " u=" << blob.theHeadInlineUpdateFlag; + ndbout << dec << " u=" << (Uint32) blob.theHeadInlineUpdateFlag; return out; } #endif |