summaryrefslogtreecommitdiff
path: root/libmudflap
diff options
context:
space:
mode:
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2005-01-05 09:27:50 +0000
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2005-01-05 09:27:50 +0000
commit1420638ed1a3ea058baa766dd3743868e554e392 (patch)
tree061e845c2740089d1d5a9bca86d4065eeeeb0073 /libmudflap
parentff503af38b881f550c5b7ae079c276454f19ae08 (diff)
downloadgcc-1420638ed1a3ea058baa766dd3743868e554e392.tar.gz
* testsuite/libmudflap.c/pass32-frag.c: Fix typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@92930 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libmudflap')
-rw-r--r--libmudflap/ChangeLog6
-rw-r--r--libmudflap/testsuite/libmudflap.c/pass32-frag.c2
2 files changed, 6 insertions, 2 deletions
diff --git a/libmudflap/ChangeLog b/libmudflap/ChangeLog
index ace95ce6062..086966f4330 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 38468642328..d7f22327976 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;
}