~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/field/short.h

  • Committer: Brian Aker
  • Date: 2008-07-23 00:11:39 UTC
  • Revision ID: brian@tangent.org-20080723001139-967ewfngqqotwb6e
Removed final uint dead types.

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
                      uint max_length __attribute__((__unused__)),
61
61
                      bool low_byte_first __attribute__((__unused__)))
62
62
  {
63
 
    int16 val;
 
63
    int16_t val;
64
64
#ifdef WORDS_BIGENDIAN
65
65
    if (table->s->db_low_byte_first)
66
66
      val = sint2korr(from);
81
81
                              uint param_data __attribute__((__unused__)),
82
82
                              bool low_byte_first __attribute__((__unused__)))
83
83
  {
84
 
    int16 val;
 
84
    int16_t val;
85
85
#ifdef WORDS_BIGENDIAN
86
86
    if (low_byte_first)
87
87
      val = sint2korr(from);