~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/typelib.c

  • Committer: Stewart Smith
  • Date: 2008-07-09 01:40:54 UTC
  • mfrom: (105 drizzle)
  • mto: This revision was merged to the branch mainline in revision 111.
  • Revision ID: stewart@flamingspork.com-20080709014054-xfgfzirbhqzrzkkj
mergeĀ fromĀ mainline

Show diffs side-by-side

added added

removed removed

Lines of Context:
184
184
    while (*x && *x != field_separator) x++;
185
185
    if ((find= find_type(i, lib, 2 | 8) - 1) < 0)
186
186
      DBUG_RETURN(0);
187
 
    result|= (ULL(1) << find);
 
187
    result|= (1ULL << find);
188
188
  }
189
189
  *err= 0;
190
190
  DBUG_RETURN(result);