summaryrefslogtreecommitdiff
path: root/ndb/test/ndbapi/interpreterInTup.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ndb/test/ndbapi/interpreterInTup.cpp')
-rw-r--r--ndb/test/ndbapi/interpreterInTup.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ndb/test/ndbapi/interpreterInTup.cpp b/ndb/test/ndbapi/interpreterInTup.cpp
index 20d84e6e96d..a07d5898213 100644
--- a/ndb/test/ndbapi/interpreterInTup.cpp
+++ b/ndb/test/ndbapi/interpreterInTup.cpp
@@ -1507,12 +1507,12 @@ void delete_rows(Ndb* pMyNdb, int tupleTest, int opType) {
inline void setAttrNames(){
for (int i = 0; i < MAXATTR; i++){
- snprintf(attrName[i], MAXSTRLEN, "COL%d", i);
+ BaseString::snprintf(attrName[i], MAXSTRLEN, "COL%d", i);
}
}
inline void setTableNames(){
- snprintf(tableName, MAXSTRLEN, "TAB1");
+ BaseString::snprintf(tableName, MAXSTRLEN, "TAB1");
}