summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorJulian Smith <jules@op59.net>2020-01-08 12:31:50 +0000
committerJulian Smith <jules@op59.net>2020-01-08 14:53:19 +0000
commitcef68e9a0ca0be10f08e415785f8b8fac37d7828 (patch)
tree833bec4ddc013a14f24121edcd66b62494b59d6d /contrib
parentc517f26773cd3a63f029b1bf6e275b227e3af5e8 (diff)
downloadghostpdl-cef68e9a0ca0be10f08e415785f8b8fac37d7828.tar.gz
Coverity 94778: added missing {...}.
Diffstat (limited to 'contrib')
-rw-r--r--contrib/lips4/gdevl4v.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/lips4/gdevl4v.c b/contrib/lips4/gdevl4v.c
index b0c204b97..d996dc423 100644
--- a/contrib/lips4/gdevl4v.c
+++ b/contrib/lips4/gdevl4v.c
@@ -1313,9 +1313,10 @@ lips4v_beginpath(gx_device_vector * vdev, gx_path_type_t type)
if (type & gx_path_type_clip) {
lputs(s, "P(10");
sputc(s, LIPS_IS2);
- } else
+ } else {
lputs(s, "P(00");
sputc(s, LIPS_IS2);
+ }
return 0;
}