From f71a8514c9f345a612280ffc328179124f9b3631 Mon Sep 17 00:00:00 2001 From: Amit Agarwal Date: Fri, 23 Oct 2015 21:36:05 -0700 Subject: [PATCH] Added newline to a meesage absence of which was causing test comparisons against baselines to fail --- Math/Math/CommonMatrix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Math/Math/CommonMatrix.h b/Math/Math/CommonMatrix.h index 13fd1b2c2..48fd4d8da 100644 --- a/Math/Math/CommonMatrix.h +++ b/Math/Math/CommonMatrix.h @@ -33,7 +33,7 @@ static inline DEVICEID_TYPE EnforceOneGPUOnly(DEVICEID_TYPE requestedDeviceId) static bool shown = false; if (!shown) { - fprintf(stderr, "EnforceOneGPUOnly: WARNING: Ignored attempt to change GPU choice from %d now %d. This message will be shown only once.", theGPUId, requestedDeviceId); + fprintf(stderr, "EnforceOneGPUOnly: WARNING: Ignored attempt to change GPU choice from %d now %d. This message will be shown only once.\n", theGPUId, requestedDeviceId); shown = true; } }