From 6e52047e0f2df5bd951a87e3a68d037bad7e16e1 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sat, 31 Oct 2020 09:38:52 -0700 Subject: [PATCH] remove an unnecessary unary + --- lib/gvc/gvdevice.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/gvc/gvdevice.c b/lib/gvc/gvdevice.c index d539b1311..90692c88b 100644 --- a/lib/gvc/gvdevice.c +++ b/lib/gvc/gvdevice.c @@ -277,7 +277,7 @@ int gvputs(GVJ_t * job, const char *s) if (gvwrite (job, s, len) != len) { return EOF; } - return +1; + return 1; } int gvputc(GVJ_t * job, int c) -- 2.40.0