gallium: add \n to error strings
authorBrian Paul <brian.paul@tungstengraphics.com>
Mon, 28 Apr 2008 22:33:15 +0000 (16:33 -0600)
committerBrian Paul <brian.paul@tungstengraphics.com>
Tue, 29 Apr 2008 17:11:47 +0000 (11:11 -0600)
src/gallium/auxiliary/util/u_pack_color.h

index 89e3b5d..8296f12 100644 (file)
@@ -91,7 +91,7 @@ util_pack_color_ub(ubyte r, ubyte g, ubyte b, ubyte a,
       return;
    /* XXX lots more cases to add */
    default:
-      debug_printf("gallium: unhandled format in util_pack_color_ub()");
+      debug_printf("gallium: unhandled format in util_pack_color_ub()\n");
    }
 }
  
@@ -174,7 +174,7 @@ util_pack_color(const float rgba[4], enum pipe_format format, void *dest)
       return;
    /* XXX lots more cases to add */
    default:
-      debug_printf("gallium: unhandled format in util_pack_color()");
+      debug_printf("gallium: unhandled format in util_pack_color()\n");
    }
 }