Commit 1af5f5b8 authored by unknown's avatar unknown

ndb - fix error message


ndb/src/kernel/blocks/dbdih/DbdihMain.cpp:
  Fix printout
parent 56c51287
......@@ -8219,7 +8219,8 @@ void Dbdih::openingTableErrorLab(Signal* signal, FileRecordPtr filePtr)
else
{
char buf[256];
BaseString::snprintf(buf, "Error opening DIH schema files for table: %d",
BaseString::snprintf(buf, sizeof(buf),
"Error opening DIH schema files for table: %d",
tabPtr.i);
progError(__LINE__, NDBD_EXIT_AFS_NO_SUCH_FILE, buf);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment