~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to extra/comp_err.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:
633
633
 
634
634
    NOTE:
635
635
      Does not support format specifiers with positional args
636
 
      like "%2$s" but that is not yet supported by my_vsnprintf
637
 
      either.
 
636
      like "%2$s" 
638
637
*/
639
638
 
640
639
static ha_checksum checksum_format_specifier(const char* msg)
641
640
{
642
641
  ha_checksum chksum= 0;
643
 
  const char* p= msg;
644
 
  const char* start= 0;
 
642
  const uchar* p= (uchar *)msg;
 
643
  const uchar* start= 0;
645
644
  int num_format_specifiers= 0;
646
645
  while (*p)
647
646
  {