From: Matthew Fernandez Date: Sat, 31 Oct 2020 16:38:52 +0000 (-0700) Subject: remove an unnecessary unary + X-Git-Tag: 2.46.0~19^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6e52047e0f2df5bd951a87e3a68d037bad7e16e1;p=graphviz remove an unnecessary unary + --- 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)