* testsuite/libmudflap.c/pass32-frag.c: Fix typo.

From-SVN: r92930
This commit is contained in:
Richard Henderson 2005-01-05 01:27:50 -08:00
parent ec24eb4ebb
commit 130e4a02c2
2 changed files with 6 additions and 2 deletions

View File

@ -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.

View File

@ -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;
}