~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/innobase/page/page0page.c

Merged build changes from Antony.

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
        rec_t*  rec)    /* in: the physical record */
74
74
{
75
75
        page_t*                         page;
76
 
        register uint16                 rec_offs_bytes;
 
76
        register uint16_t                       rec_offs_bytes;
77
77
        register page_dir_slot_t*       slot;
78
78
        register const page_dir_slot_t* first_slot;
79
79
        register rec_t*                 r = rec;
100
100
 
101
101
        rec_offs_bytes = mach_encode_2(r - page);
102
102
 
103
 
        while (UNIV_LIKELY(*(uint16*) slot != rec_offs_bytes)) {
 
103
        while (UNIV_LIKELY(*(uint16_t*) slot != rec_offs_bytes)) {
104
104
 
105
105
                if (UNIV_UNLIKELY(slot == first_slot)) {
106
106
                        fprintf(stderr,