~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/blob.cc

  • Committer: Lee Bieber
  • Date: 2010-10-30 05:21:29 UTC
  • mfrom: (1892.1.2 build)
  • Revision ID: kalebral@gmail.com-20101030052129-0kqne3t2k75agudh
Merge Monty - Fix a bunch of warnings and errors from clang build.
Merge Monty - fix build-all-warnings build issue

Show diffs side-by-side

added added

removed removed

Lines of Context:
396
396
 
397
397
  diff= memcmp(a,b,min(a_length,b_length));
398
398
 
399
 
  return diff ? diff : (int) (a_length - b_length);
 
399
  return diff ? diff : (unsigned int) (a_length - b_length);
400
400
}
401
401
 
402
402
/* The following is used only when comparing a key */