rtc::Fatal output: Print space between # and message

R=henrika@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/17949004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@6689 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
kwiberg@webrtc.org 2014-07-15 11:41:05 +00:00
parent bc73871251
commit 324f63ca38

View File

@ -26,7 +26,7 @@ void Fatal(const char* file, int line, const char* format, ...) {
va_end(arguments);
LOG(LS_ERROR) << "\n\n#\n# Fatal error in " << file
<< ", line " << line << "\n#" << msg
<< ", line " << line << "\n# " << msg
<< "\n#\n";
abort();
}