Added newline to a meesage absence of which was causing test comparisons against baselines to fail

This commit is contained in:
Amit Agarwal 2015-10-23 21:36:05 -07:00
Родитель d0c794cd75
Коммит f71a8514c9
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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;
}
}