summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2018-09-28 11:03:53 -0400
committerDidier Raboud <odyx@debian.org>2019-09-13 17:50:01 +0200
commit0ae94c222f866da7b418a0f886d36a1921eefdb8 (patch)
treeacfc7e3a3756617f9a92cfe3ab964d6a3c2d97ab
parentcf5f431a886c657a12116ee540340e6500385580 (diff)
backend: Fix a compile warning that popped up on Debian 9
Gbp-Pq: Name 0003-backend-Fix-a-compile-warning-that-popped-up-on-Debi.patch
-rw-r--r--src/cups/backend_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cups/backend_common.c b/src/cups/backend_common.c
index 09ea078..09406f8 100644
--- a/src/cups/backend_common.c
+++ b/src/cups/backend_common.c
@@ -1354,7 +1354,7 @@ void dump_markers(struct marker *markers, int marker_count, int full)
ATTR("marker-colors=");
for (i = 0 ; i < marker_count; i++) {
- DEBUG2(markers[i].color);
+ DEBUG2("%s", markers[i].color);
if ((i+1) < marker_count)
DEBUG2(",");
}