From: Vinson Lee Date: Fri, 24 Dec 2010 01:25:32 +0000 (-0800) Subject: r600g: Rearrange print order of outputs of R600_ERR. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1039f36c47bf8c5db93b1d39c912c86fc3b1eb2f;p=mesa.git r600g: Rearrange print order of outputs of R600_ERR. --- diff --git a/src/gallium/drivers/r600/r600.h b/src/gallium/drivers/r600/r600.h index 85e29665053..578ac40ba98 100644 --- a/src/gallium/drivers/r600/r600.h +++ b/src/gallium/drivers/r600/r600.h @@ -35,7 +35,7 @@ #define RADEON_CTX_MAX_PM4 (64 * 1024 / 4) #define R600_ERR(fmt, args...) \ - fprintf(stderr, "EE %s/%s:%d - "fmt, __FILE__, __func__, __LINE__, ##args) + fprintf(stderr, "EE %s:%d %s - "fmt, __FILE__, __LINE__, __func__, ##args) typedef uint64_t u64; typedef uint32_t u32;