Cleanup: Corrected object initialization using {}

This commit is contained in:
Paul Beckingham 2015-10-16 08:22:03 -04:00
parent 9b5d0a7cdd
commit 5110a83efa
6 changed files with 11 additions and 11 deletions

View file

@ -235,7 +235,7 @@ const std::string uuid ()
{
uuid_t id;
uuid_generate (id);
char buffer[100] = {0};
char buffer[100] {};
uuid_unparse_lower (id, buffer);
// Bug found by Steven de Brouwer.