Module: Mesa Branch: master Commit: 5ffa35b64da197171e14122425ea944363bc37a1 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=5ffa35b64da197171e14122425ea944363bc37a1
Author: Lionel Landwerlin <[email protected]> Date: Sun Jun 10 12:54:59 2018 +0100 intel: batch-decoder: add missing return line Signed-off-by: Lionel Landwerlin <[email protected]> Reviewed-by: Rafael Antognolli <[email protected]> --- src/intel/common/gen_batch_decoder.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intel/common/gen_batch_decoder.c b/src/intel/common/gen_batch_decoder.c index 81d8298c28..fc0ff95a47 100644 --- a/src/intel/common/gen_batch_decoder.c +++ b/src/intel/common/gen_batch_decoder.c @@ -854,7 +854,7 @@ gen_print_batch(struct gen_batch_decode_ctx *ctx, } if (next_batch.map == NULL) { - fprintf(ctx->fp, "Secondary batch at 0x%08"PRIx64" unavailable", + fprintf(ctx->fp, "Secondary batch at 0x%08"PRIx64" unavailable\n", next_batch.addr); } _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
