~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/field.h

Merged in from trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
931
931
                      uint max_length __attribute__((__unused__)),
932
932
                      bool low_byte_first __attribute__((__unused__)))
933
933
  {
934
 
    int64 val;
 
934
    int64_t val;
935
935
#ifdef WORDS_BIGENDIAN
936
936
    if (table->s->db_low_byte_first)
937
937
      val = sint8korr(from);
952
952
                              uint param_data __attribute__((__unused__)),
953
953
                              bool low_byte_first __attribute__((__unused__)))
954
954
  {
955
 
    int64 val;
 
955
    int64_t val;
956
956
#ifdef WORDS_BIGENDIAN
957
957
    if (low_byte_first)
958
958
      val = sint8korr(from);