~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_list.h

  • 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:
460
460
  struct ilink **prev,*next;
461
461
  static void *operator new(size_t size)
462
462
  {
463
 
    return (void*)malloc((uint)size);
 
463
    return (void*)malloc((uint32_t)size);
464
464
  }
465
465
  static void operator delete(void* ptr_arg, size_t)
466
466
  {