mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 03:47:17 +02:00
changed to call internal snprintf/vsnprintf
This commit is contained in:
parent
277c84e2b1
commit
63920158ce
79 changed files with 350 additions and 294 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue