]> granicus.if.org Git - graphviz/commitdiff
remove some -Wsign-conversion warnings
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Thu, 18 Mar 2021 00:11:13 +0000 (17:11 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 28 Mar 2021 21:41:54 +0000 (14:41 -0700)
This one expression was responsible for 4 compiler warnings, which are now dealt
with.

lib/cgraph/agerror.c

index a0cbb7f656274b34fa49421346bc36a45a7dc0b7..b091ea763805edeccc376ef94ae4f76474911834 100644 (file)
@@ -114,7 +114,7 @@ static int agerr_va(agerrlevel_t level, const char *fmt, va_list args)
 
     /* store this error level */
     agerrno = lvl;
-    agmaxerr = MAX(agmaxerr, agerrno);
+    agmaxerr = MAX(agmaxerr, (int)agerrno);
 
     /* We report all messages whose level is bigger than the user set agerrlevel
      * Setting agerrlevel to AGMAX turns off immediate error reporting.