~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/cmpfunc.cc

  • Committer: Monty Taylor
  • Date: 2009-08-27 15:30:55 UTC
  • mto: (1130.3.4 memory-file-moves)
  • mto: This revision was merged to the branch mainline in revision 1184.
  • Revision ID: mordred@inaugust.com-20090827153055-zezyggjhrh31l5pz
Fixed a couple of little things that uncrustify didn't like.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1047
1047
  /* Compare values. */
1048
1048
  if (is_nulls_eq)
1049
1049
    return (a_value == b_value);
1050
 
  return a_value < b_value ? -1 : (a_value > b_value ? 1 : 0);
 
1050
  return (a_value < b_value) ? -1 : ((a_value > b_value) ? 1 : 0);
1051
1051
}
1052
1052
 
1053
1053