Fixed a mistake in the test case

git-svn-id: http://picoc.googlecode.com/svn/trunk@299 21eae674-98b7-11dd-bd71-f92a316d2d60
This commit is contained in:
zik.saleeba 2009-05-28 00:18:52 +00:00
parent d1d1b7e84e
commit ec303bd4bc
2 changed files with 4 additions and 4 deletions

View file

@ -10,7 +10,7 @@ void intfunc(int a)
void floatfunc(float a)
{
printf("float: %d\n", a);
printf("float: %f\n", a);
}
charfunc('a');

View file

@ -4,9 +4,9 @@ char: c
int: 97
int: 98
int: 99
float: 97
float: 98
float: 99
float: 97.0
float: 98.0
float: 99.0
a 98 99.0
a 98 99.0
a 98 99.0