~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/blob.cc

  • Committer: Monty
  • Date: 2008-10-02 05:41:33 UTC
  • mfrom: (398.1.10 codestyle)
  • Revision ID: mordred@scylla.inaugust.com-20081002054133-tyxv5bmqpazfaqqi
Merged up to 408 of stdint-includes-fix.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
uint32_t
29
29
blob_pack_length_to_max_length(uint arg)
30
30
{
31
 
  return (1LL << cmin(arg, 4U) * 8) - 1LL;
 
31
  return (1 << cmin(arg, 4U) * 8) - 1;
32
32
}
33
33
 
34
34