summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbert Astals Cid <aacid@kde.org>2023-09-25 18:07:34 +0200
committerAlbert Astals Cid <aacid@kde.org>2023-09-25 18:08:33 +0200
commitd0440bf2b525dcb3372802a5b5b621a3e2d5be6e (patch)
tree0a4885c2a63931144b3b8ec96ea955f15773cbd1
parent991470945f8f09b4a675e45df1223110eac1a9d8 (diff)
Use zu for printf + size_t
-rw-r--r--splash/Splash.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/splash/Splash.cc b/splash/Splash.cc
index 0dbd0c0e..5f49ce95 100644
--- a/splash/Splash.cc
+++ b/splash/Splash.cc
@@ -1889,7 +1889,7 @@ SplashError Splash::stroke(SplashPath *path)
SplashCoord d1, d2, t1, t2, w;
if (debugMode) {
- printf("stroke [dash:%ld] [width:%.2f]:\n", state->lineDash.size(), (double)state->lineWidth);
+ printf("stroke [dash:%zu] [width:%.2f]:\n", state->lineDash.size(), (double)state->lineWidth);
dumpPath(path);
}
opClipRes = splashClipAllOutside;