~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/crc32/crc32udf.cc

  • Committer: Brian Aker
  • Date: 2008-10-06 03:55:31 UTC
  • mto: This revision was merged to the branch mainline in revision 479.
  • Revision ID: brian@gir.tangent.org-20081006035531-ade3cc3kfwutd35g
uint cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 
16
16
#include "config.h"
17
17
 
18
 
#include CSTDINT_H
 
18
#include <stdint.h>
19
19
#include <drizzled/common_includes.h>
20
20
#include <drizzled/item_func.h>
21
21
#include <zlib.h>
40
40
    return 0; /* purecov: inspected */
41
41
  }
42
42
  null_value=0;
43
 
  return (int64_t) crc32(0L, (unsigned char*)res->ptr(), res->length());
 
43
  return (int64_t) crc32(0L, (uchar*)res->ptr(), res->length());
44
44
}
45
45
 
46
46
Item_func* create_crc32udf_item(MEM_ROOT* m)