mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
ndb: fix solaris (etc) ndb startup problem in mysql-test-run
This commit is contained in:
parent
414591915c
commit
dededf09fa
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ NdbOut&
|
|||
NdbOut::operator<<(unsigned long int v) { return *this << (Uint64) v; }
|
||||
|
||||
NdbOut&
|
||||
NdbOut::operator<<(const char* val){ m_out->print("%s", val); return * this; }
|
||||
NdbOut::operator<<(const char* val){ m_out->print("%s", val ? val : "(null)"); return * this; }
|
||||
NdbOut&
|
||||
NdbOut::operator<<(const void* val){ m_out->print("%p", val); return * this; }
|
||||
NdbOut&
|
||||
|
|
Loading…
Reference in a new issue