Ticket #203: param.2.diff

File param.2.diff, 489 bytes (added by KO Myung-Hun, 13 years ago)

Adding a missing bracket ')' at the end of #define statement

  • sys/param.h

    old new  
    202202#endif
    203203
    204204#if defined (__cplusplus) && (__GNUC__ >= 2)
    205 #  define MIN(a,b) (((a)<?(b))
     205#  define MIN(a,b) (((a)<?(b)))
    206206#else
    207207#  define MIN(a,b) (((a)<(b))?(a):(b))
    208208#endif
    209209#if defined (__cplusplus) && (__GNUC__ >= 2)
    210 #  define MAX(a,b) (((a)>?(b))
     210#  define MAX(a,b) (((a)>?(b)))
    211211#else
    212212#  define MAX(a,b) (((a)>(b))?(a):(b))
    213213#endif