diff --git a/libmudflap/ChangeLog b/libmudflap/ChangeLog index ace95ce6062b2ba5b04fd3bc5a9a5ebb0d9551e9..086966f43303b9959f06732dc3004cfac63d0133 100644 --- a/libmudflap/ChangeLog +++ b/libmudflap/ChangeLog @@ -1,4 +1,8 @@ -2004-01-02 Greg McGary <greg@mcgary.org> +2005-01-05 Richard Henderson <rth@redhat.com> + + * testsuite/libmudflap.c/pass32-frag.c: Fix typo. + +2005-01-02 Greg McGary <greg@mcgary.org> * mf-impl.h (uintptr_t): Get typedef via stdint.h or define explicitly. * mf-runtime.h: New file, replaces mf-runtime.h.in. diff --git a/libmudflap/testsuite/libmudflap.c/pass32-frag.c b/libmudflap/testsuite/libmudflap.c/pass32-frag.c index 384686423282891c26d88ce861403d75e8fc7ca4..d7f223279761cdd68d598c2b0f56daf7fd3f4a3d 100644 --- a/libmudflap/testsuite/libmudflap.c/pass32-frag.c +++ b/libmudflap/testsuite/libmudflap.c/pass32-frag.c @@ -13,6 +13,6 @@ int main () { struct foo k; char *n = get_z (& k); -srand ((int)(__mf_uintptr_)t n); /* use the pointer value */ +srand ((int)(__mf_uintptr_t) n); /* use the pointer value */ return 0; }