From 33b56168457d5c34a068831a2ddb8d2a096774fe Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sun, 29 Aug 2021 16:47:08 -0700 Subject: [PATCH] layerPagePrefix: remove unnecessary bracketing --- lib/common/emit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/common/emit.c b/lib/common/emit.c index b0cfb24dc..a02266065 100644 --- a/lib/common/emit.c +++ b/lib/common/emit.c @@ -181,7 +181,7 @@ layerPagePrefix (GVJ_t* job, agxbuf* xb) if (job->layerNum > 1 && (job->flags & GVDEVICE_DOES_LAYERS)) { agxbprint (xb, "%s_", job->gvc->layerIDs[job->layerNum]); } - if ((job->pagesArrayElem.x > 0) || (job->pagesArrayElem.y > 0)) { + if (job->pagesArrayElem.x > 0 || job->pagesArrayElem.y > 0) { agxbprint (xb, "page%d,%d_", job->pagesArrayElem.x, job->pagesArrayElem.y); } } -- 2.40.0