Fixed stupid error in app_4.
This commit is contained in:
parent
fa00060dda
commit
5d96b5e3ca
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ int main()
|
||||||
{
|
{
|
||||||
int x = 1;
|
int x = 1;
|
||||||
int y;
|
int y;
|
||||||
y = c_func_add_1(y);
|
y = c_func_add_1(x);
|
||||||
assert( y == x + 1 );
|
assert( y == x + 1 );
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue