Needed help on compiler option

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi all,

Pls have a look at the following code snippet....

void test(int i)
{
    printf("i:%d\n",i);
}

int main()
{
    char arr[100];

    arr[1] = 10;

    test(arr[1]);

    return 0;
}

Logically, this code is working. But this simple concept resembles a
real time problem,
where the compiler should generate a warning when there is a type mismatch.

Pls suggest a compiler flag (flag like -Wall which should be passed to
gcc) which should
give a warning when there a type mismatch in the arguments t functions.

Thanx,
Subrahmanyam.



[Index of Archives]     [Linux C Programming]     [Linux Kernel]     [eCos]     [Fedora Development]     [Fedora Announce]     [Autoconf]     [The DWARVES Debugging Tools]     [Yosemite Campsites]     [Yosemite News]     [Linux GCC]

  Powered by Linux