summaryrefslogtreecommitdiff
path: root/ndb/src/ndbapi/NdbBlob.cpp
diff options
context:
space:
mode:
authorunknown <tomas@poseidon.ndb.mysql.com>2004-10-20 13:42:41 +0000
committerunknown <tomas@poseidon.ndb.mysql.com>2004-10-20 13:42:41 +0000
commite4a86f3237783b356eb448952ae11c292c12006c (patch)
treebd85bda937436c38cfeb5846ed1cad5d2371195d /ndb/src/ndbapi/NdbBlob.cpp
parent2da1cbd97dd566d629115f02321ab36aac069ce4 (diff)
downloadmariadb-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.cpp4
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