No bug - Add trailing newlines for non-Android Linux sandbox logging. r=kang

--HG--
extra : rebase_source : c0e936b62289c0e5eecad41fce9afac881fe4667
This commit is contained in:
Jed Davis 2014-08-14 15:39:14 -07:00
parent b155d53d07
commit 85b2e9c570

View File

@ -47,7 +47,7 @@ namespace mozilla {
#if defined(ANDROID)
#define LOG_ERROR(args...) __android_log_print(ANDROID_LOG_ERROR, "Sandbox", ## args)
#else
#define LOG_ERROR(fmt, args...) fprintf(stderr, "Sandbox: " fmt, ## args)
#define LOG_ERROR(fmt, args...) fprintf(stderr, "Sandbox: " fmt "\n", ## args)
#endif
#ifdef MOZ_GMP_SANDBOX