diff options
author | Brian Paul <[email protected]> | 2008-04-28 16:33:15 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-04-29 11:11:47 -0600 |
commit | 1cff4992b389ad884a663c93bdd7b7c6be6c79d2 (patch) | |
tree | 64a16353b7c67b71ea2b5bae57adb85150501eb4 | |
parent | 5e8d7899a8114918054f07c807aef07cbbfcb6b4 (diff) |
gallium: add \n to error strings
-rw-r--r-- | src/gallium/auxiliary/util/u_pack_color.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/util/u_pack_color.h b/src/gallium/auxiliary/util/u_pack_color.h index 89e3b5dc45f..8296f1291c9 100644 --- a/src/gallium/auxiliary/util/u_pack_color.h +++ b/src/gallium/auxiliary/util/u_pack_color.h @@ -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"); } } |