aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drmtools.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drmtools.c b/drmtools.c
index 9c8bf82..581886a 100644
--- a/drmtools.c
+++ b/drmtools.c
@@ -570,9 +570,9 @@ void drm_print_format(FILE *fp, const struct fbformat *fmt,
? "fourcc le"
: "legacy cpu " LE_BE("(le)", "(be)"));
if (libs) {
- fprintf(fp, " %-5s %-6s",
- (fmt->cairo != CAIRO_FORMAT_INVALID) ? "cairo" : "",
- fmt->pixman ? "pixman" : "");
+ fprintf(fp, " %-6s %-5s",
+ fmt->pixman ? "pixman" : "",
+ (fmt->cairo != CAIRO_FORMAT_INVALID) ? "cairo" : "");
}
fprintf(fp, "\n");
}