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:
parent
d1d1b7e84e
commit
ec303bd4bc
|
@ -10,7 +10,7 @@ void intfunc(int a)
|
|||
|
||||
void floatfunc(float a)
|
||||
{
|
||||
printf("float: %d\n", a);
|
||||
printf("float: %f\n", a);
|
||||
}
|
||||
|
||||
charfunc('a');
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue