summaryrefslogtreecommitdiff
path: root/ndb/test/src/HugoCalculator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ndb/test/src/HugoCalculator.cpp')
-rw-r--r--ndb/test/src/HugoCalculator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ndb/test/src/HugoCalculator.cpp b/ndb/test/src/HugoCalculator.cpp
index 147c8b104d8..62c35c54a7a 100644
--- a/ndb/test/src/HugoCalculator.cpp
+++ b/ndb/test/src/HugoCalculator.cpp
@@ -96,7 +96,7 @@ HugoCalculator::calcValue(int record,
// of the string, then fill with other chars
// The string length is set to the same size as the attribute
len = attr->getLength();
- snprintf(buf, len, "%d", val);
+ BaseString::snprintf(buf, len, "%d", val);
for(int i=strlen(buf); i < len; i++)
buf[i] = a[((val^i)%25)];
} else{