Fix base_trace() to avoid double \n\n at the end of line

This commit is contained in:
David Capello 2016-04-07 16:12:33 -03:00
parent 495a645917
commit 7d185d1543

View File

@ -1,5 +1,5 @@
// Aseprite Base Library
// Copyright (c) 2001-2015 David Capello
// Copyright (c) 2001-2016 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
@ -68,7 +68,7 @@ void base_trace(const char* msg, ...)
#else
std::cerr << buf << std::endl;
std::cerr << buf << std::flush;
#endif
}