~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/mf_util.cc

  • Committer: Brian Aker
  • Date: 2009-02-21 00:18:15 UTC
  • Revision ID: brian@tangent.org-20090221001815-x20e8h71e984lvs1
Completion (?) of uint conversion.

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
 
36
36
void *  __CDECL halloc(long count,size_t length)
37
37
{
38
 
   return (void*) MK_FP(dos_alloc((uint) ((count*length+15) >> 4)),0);
 
38
   return (void*) MK_FP(dos_alloc((uint32_t) ((count*length+15) >> 4)),0);
39
39
}
40
40
 
41
41
void __CDECL hfree(void *ptr)