Eliminate use of MIN().
authorAndrew Cagney <cagney@redhat.com>
Fri, 11 Aug 2000 00:48:51 +0000 (00:48 +0000)
committerAndrew Cagney <cagney@redhat.com>
Fri, 11 Aug 2000 00:48:51 +0000 (00:48 +0000)
sim/common/ChangeLog
sim/common/dv-sockser.c

index 3f945b5..3266d3a 100644 (file)
@@ -1,3 +1,7 @@
+2000-08-09  Andrew Cagney  <cagney@lulu.cygnus.com>
+
+       * dv-sockser.c (dv_sockser_init): Eliminate MIN macro.
+
 2000-07-27  Frank Ch. Eigler  <fche@redhat.com>
 
        From Maciej W. Rozycki <macro@ds2.pg.gda.pl>
index fb457d4..d5e6577 100644 (file)
@@ -74,7 +74,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 #endif /* ! defined (FNBLOCK) */
 #endif /* ! defined (O_NONBLOCK) */
 \f
-#define MIN(a,b) ((a) < (b) ? (a) : (b))
 
 /* Compromise between eating cpu and properly busy-waiting.
    One could have an option to set this but for now that seems
@@ -148,7 +147,9 @@ dv_sockser_init (SIM_DESC sd)
                      sockser_addr);
       return SIM_RC_FAIL;
     }
-  tmp = MIN (port_str - sockser_addr, (int) sizeof hostname - 1);
+  tmp = port_str - sockser_addr;
+  if (tmp >= sizeof hostname)
+    tmp = sizeof (hostname) - 1;
   strncpy (hostname, sockser_addr, tmp);
   hostname[tmp] = '\000';
   port = atoi (port_str + 1);