]> granicus.if.org Git - graphviz/commitdiff
Remove 2 -Wconversion warnings in idmap
authorMagnus Jacobsson <magnus.jacobsson@berotec.se>
Thu, 27 Aug 2020 14:34:51 +0000 (16:34 +0200)
committerMagnus Jacobsson <magnus.jacobsson@berotec.se>
Mon, 7 Sep 2020 13:42:17 +0000 (15:42 +0200)
Its safe to cast to int from long since the value is always TRUE (1).

lib/cgraph/id.c

index 62fadc8e888c98770137bd07bf59deb164b0276a..de671285055be9a0913383baa7bfcc602e2866bf 100644 (file)
@@ -99,7 +99,7 @@ int agmapnametoid(Agraph_t * g, int objtype, char *str,
        rv = 0;
 
     if (str && (str[0] != LOCALNAMEPREFIX)) {
-       rv = AGDISC(g, id)->map(AGCLOS(g, id), objtype, str, result,
+       rv = (int) AGDISC(g, id)->map(AGCLOS(g, id), objtype, str, result,
                                createflag);
        if (rv) {
            aginternalmapinsert(g, objtype, str, *result);
@@ -109,7 +109,7 @@ int agmapnametoid(Agraph_t * g, int objtype, char *str,
 
     if (createflag) {
        /* get a new anonymous ID, and store in the internal map */
-       rv = AGDISC(g, id)->map(AGCLOS(g, id), objtype, NILstr, result,
+       rv = (int) AGDISC(g, id)->map(AGCLOS(g, id), objtype, NILstr, result,
                                createflag);
        if (rv && str)
            aginternalmapinsert(g, objtype, str, *result);