Module: Demos Branch: master Commit: 7d28a4f1cd5dab6dfe26de5f40d86e29967e4f17 URL: http://cgit.freedesktop.org/mesa/demos/commit/?id=7d28a4f1cd5dab6dfe26de5f40d86e29967e4f17
Author: Brian Paul <[email protected]> Date: Tue May 21 18:29:57 2013 -0600 wglinfo: add missing \n to error messages --- src/wgl/wglinfo.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wgl/wglinfo.c b/src/wgl/wglinfo.c index 31ee361..41f2a31 100644 --- a/src/wgl/wglinfo.c +++ b/src/wgl/wglinfo.c @@ -473,13 +473,13 @@ print_screen_info(HDC _hdc, GLboolean limits, GLboolean singleLine) wc.hInstance, NULL); if (!win) { - fprintf(stderr, "Couldn't create window"); + fprintf(stderr, "Couldn't create window\n"); return; } hdc = GetDC(win); if (!hdc) { - fprintf(stderr, "Couldn't obtain HDC"); + fprintf(stderr, "Couldn't obtain HDC\n"); return; } _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
