Make a warning go away on 64-bit systems.
authorRob Landley <rob@landley.net>
Sun, 6 Aug 2006 20:41:11 +0000 (20:41 -0000)
committerRob Landley <rob@landley.net>
Sun, 6 Aug 2006 20:41:11 +0000 (20:41 -0000)
util-linux/readprofile.c

index aaa419a3c4ac6593a74d4339bd2ef1bfab7099bf..fb658c87f103364d7348d0d5b93750b0ccb8e901 100644 (file)
@@ -47,7 +47,7 @@ int readprofile_main(int argc, char **argv)
        int proFd;
        const char *mapFile, *proFile, *mult=0;
        unsigned long len=0, indx=1;
-       unsigned long long add0=0;
+       uint64_t add0=0;
        unsigned int step;
        unsigned int *buf, total, fn_len;
        unsigned long long fn_add, next_add;          /* current and next address */
@@ -223,7 +223,7 @@ int readprofile_main(int argc, char **argv)
                                        printf ("%s:\n", fn_name);
                                        header_printed = 1;
                                }
-                               printf ("\t%llx\t%u\n", (indx - 1)*step + add0, buf[indx]);
+                               printf ("\t%"PRIx64"\t%u\n", (indx - 1)*step + add0, buf[indx]);
                        }
                        this += buf[indx++];
                }