[aseprite] 160/196: Fix base_trace() to avoid double \n\n at the end of line

Tobias Hansen thansen at moszumanska.debian.org
Wed Apr 20 18:50:15 UTC 2016


This is an automated email from the git hooks/post-receive script.

thansen pushed a commit to branch master
in repository aseprite.

commit 7d185d1543bc898bbb15755aa60a7dc52a8026fe
Author: David Capello <davidcapello at gmail.com>
Date:   Thu Apr 7 16:12:33 2016 -0300

    Fix base_trace() to avoid double \n\n at the end of line
---
 src/base/debug.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/base/debug.cpp b/src/base/debug.cpp
index e0ccc4b..cc965f2 100644
--- a/src/base/debug.cpp
+++ b/src/base/debug.cpp
@@ -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
 }

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/aseprite.git



More information about the Pkg-games-commits mailing list