]> granicus.if.org Git - graphviz/commit
cgraph: squash some -Wconversion warnings
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 13 Nov 2022 17:44:36 +0000 (09:44 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 13 Nov 2022 22:51:26 +0000 (14:51 -0800)
commitde1288deee7dd0ad9e603dc5c0e430d5d654986f
tree4c8112faeed214d991748d9bdcbcfca6bca45d83
parent02a3c9c4bb957ac346f07cd4d979d80b60385157
cgraph: squash some -Wconversion warnings

This squashes the following warnings on CentOS 7 where the compiler believes
the sequence ID may overflow:

  node.c: In function 'agnodebefore':
  node.c:370:23: warning: conversion to 'unsigned int:28' from 'int' may alter
    its value [-Wconversion]
     AGSEQ(n) = AGSEQ(n) + 1;
                         ^
  node.c:376:26: warning: conversion to 'unsigned int:28' from 'int' may alter
    its value [-Wconversion]
    AGSEQ(snd) = AGSEQ(fst) - 1;
                            ^
lib/cgraph/node.c