diff options
author | thevenyp <thevenyp@280ebfd0-de03-0410-8827-d642c229c3f4> | 2009-03-16 10:01:24 +0000 |
---|---|---|
committer | thevenyp <thevenyp@280ebfd0-de03-0410-8827-d642c229c3f4> | 2009-03-16 10:01:24 +0000 |
commit | a9cf1b598d94e314f3d6c2b1a25b677c1cc27a40 (patch) | |
tree | 5a070b8b481ac7f5fdcb642c1f52d1f5bbef1f80 /tests/tsprintf.c | |
parent | 714200df7fb237d46f93ddaf04f4d090bd5f92be (diff) | |
download | mpfr-a9cf1b598d94e314f3d6c2b1a25b677c1cc27a40.tar.gz |
tests/tsprintf.c: Fix typo.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@6108 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/tsprintf.c')
-rw-r--r-- | tests/tsprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tsprintf.c b/tests/tsprintf.c index 8809c5343..582708dee 100644 --- a/tests/tsprintf.c +++ b/tests/tsprintf.c @@ -208,7 +208,7 @@ native_types (void) check_vsprintf (buf, "%s", s); sprintf (buf, "--%s++", ""); - check_sprintf (buf, "--%s++", ""); + check_vsprintf (buf, "--%s++", ""); sprintf (buf, "%u", ui); check_vsprintf (buf, "%u", ui); |