]> granicus.if.org Git - file/commitdiff
change u_int to uint32_t
authorChristos Zoulas <christos@zoulas.com>
Thu, 8 Jun 2006 21:51:12 +0000 (21:51 +0000)
committerChristos Zoulas <christos@zoulas.com>
Thu, 8 Jun 2006 21:51:12 +0000 (21:51 +0000)
src/readelf.c

index e3c1a3a303f4db07f9b2e6e34b1d65f3b4a58a86..bdaeea62cefb5ea6b8997318cc058adea3aa336f 100644 (file)
@@ -37,7 +37,7 @@
 #include "readelf.h"
 
 #ifndef lint
-FILE_RCSID("@(#)$Id: readelf.c,v 1.56 2006/06/08 20:53:31 christos Exp $")
+FILE_RCSID("@(#)$Id: readelf.c,v 1.57 2006/06/08 21:51:12 christos Exp $")
 #endif
 
 #ifdef ELFCORE
@@ -424,10 +424,10 @@ donote(struct magic_set *ms, unsigned char *nbuf, size_t offset, size_t size,
                 * p = patchlevel
                 */
                if (desc > 100000000U) {
-                       u_int ver_patch = (desc / 100) % 100;
-                       u_int ver_rel = (desc / 10000) % 100;
-                       u_int ver_min = (desc / 1000000) % 100;
-                       u_int ver_maj = desc / 100000000;
+                       uint32_t ver_patch = (desc / 100) % 100;
+                       uint32_t ver_rel = (desc / 10000) % 100;
+                       uint32_t ver_min = (desc / 1000000) % 100;
+                       uint32_t ver_maj = desc / 100000000;
 
                        if (file_printf(ms, " %u.%u", ver_maj, ver_min) == -1)
                                return size;