gallium: add \n to error strings

This commit is contained in:
Brian Paul 2008-04-28 16:33:15 -06:00
parent 5e8d7899a8
commit 1cff4992b3
1 changed files with 2 additions and 2 deletions

View 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");
}
}