История изменений
Исправление vvviperrr, (текущая версия) :
viper@viper-debian:~$ cc main.c
main.c: In function ‘main’:
main.c:13:9: warning: passing argument 1 of ‘fun’ from incompatible pointer type
fun(&a);
^
main.c:5:6: note: expected ‘int *’ but argument is of type ‘short int *’
void fun(int *val)
даже без Wall ругается
Исходная версия vvviperrr, :
viper@viper-debian:~$ cc main.c
main.c: In function ‘main’:
main.c:13:9: warning: passing argument 1 of ‘fun’ from incompatible pointer type
fun(&a);
^
main.c:5:6: note: expected ‘int *’ but argument is of type ‘short int *’
void fun(int *val)