~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_static.h

Merged build changes from Antony.

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
  struct st_irem *next;         /* Linked list of structures       */
45
45
  struct st_irem *prev;         /* Other link                      */
46
46
  char *filename;               /* File in which memory was new'ed */
47
 
  uint32 linenum;               /* Line number in above file       */
48
 
  uint32 datasize;              /* Size requested                  */
49
 
  uint32 SpecialValue;          /* Underrun marker value           */
 
47
  uint32_t linenum;             /* Line number in above file       */
 
48
  uint32_t datasize;            /* Size requested                  */
 
49
  uint32_t SpecialValue;                /* Underrun marker value           */
50
50
};
51
51
 
52
52