summaryrefslogtreecommitdiff
path: root/ndb/test/include
diff options
context:
space:
mode:
authorunknown <tomas@poseidon.ndb.mysql.com>2004-10-21 19:02:01 +0000
committerunknown <tomas@poseidon.ndb.mysql.com>2004-10-21 19:02:01 +0000
commit63920158ced1f2b343b14b723c2f5d9a92b06e62 (patch)
treeeba95bbc6b196e98a9035458df02703db497dd86 /ndb/test/include
parent277c84e2b12233624bdcc8f904bf86bbf9512e8e (diff)
downloadmariadb-git-63920158ced1f2b343b14b723c2f5d9a92b06e62.tar.gz
changed to call internal snprintf/vsnprintf
Diffstat (limited to 'ndb/test/include')
-rw-r--r--ndb/test/include/NDBT_Test.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ndb/test/include/NDBT_Test.hpp b/ndb/test/include/NDBT_Test.hpp
index 176cec3cd27..b0b5fe15960 100644
--- a/ndb/test/include/NDBT_Test.hpp
+++ b/ndb/test/include/NDBT_Test.hpp
@@ -251,7 +251,7 @@ public:
// Convert to Uint32 in order to be able to print it to screen
Uint32 lapTime = (Uint32)m_ticks;
Uint32 secTime = lapTime/1000;
- snprintf(buf, 255, "%d secs (%d ms)", secTime, lapTime);
+ BaseString::snprintf(buf, 255, "%d secs (%d ms)", secTime, lapTime);
return buf;
}
private: