[previous] 0540 [next] [C] 2nd and 3rd operands of conditional operator '?' must have compatible types.
Constraint violations REFERENCE - ISO:C90-6.3.15 Conditional Operator - Constraints

This is a constraint error

Check the type of the 2nd and 3rd operands of this conditional operator. A conditional operator can only be used when:

For example:


/*PRQA S 2211,2213,2216,3198,3199,3203,3205,3210,3227,3408,3447,3617,3625 ++*/

struct ST1 {int a; int b;};

extern struct ST1 stx;
extern struct ST1 sty;
extern int   g;
extern int  *pi;
extern char *pc;

void foo(int n)
{
    int r;
    int *p;

    p = (n > 0) ? pi : g;       /* Message 0540 */
    p = (n > 0) ? pi : pc;      /* Message 0540 */


    r = (n > 0) ? n : g;        /* OK           */
    stx = (n > 0) ? stx : sty;  /* OK           */

}


MISRA C:2012 Rules applicable to message 0540:

Rule-1.1  (Required) The program shall contain no violations of the standard C syntax and constraints, and shall not exceed the implementation's translation limits


QA·C Source Code Analyser 8.1
MISRA C:2012 Compliance Module 1.0
© 2012 Programming Research.
www.programmingresearch.com
Personality Groups | Glossary | Message Index | MISRA C:2012 Rule Index Contents