~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/mf_iocache2.c

Merged in Jay's tree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
  DBUG_ENTER("my_b_copy_to_file");
55
55
 
56
56
  /* Reinit the cache to read from the beginning of the cache */
57
 
  if (reinit_io_cache(cache, READ_CACHE, 0L, FALSE, FALSE))
 
57
  if (reinit_io_cache(cache, READ_CACHE, 0L, false, false))
58
58
    DBUG_RETURN(1);
59
59
  bytes_in_cache= my_b_bytes_in_cache(cache);
60
60
  do
334
334
    backtrack= fmt;
335
335
    fmt++;
336
336
 
337
 
    is_zero_padded= FALSE;
 
337
    is_zero_padded= false;
338
338
    minimum_width_sign= 1;
339
339
    minimum_width= 0;
340
340
    precision= 0;
346
346
      case '-': 
347
347
        minimum_width_sign= -1; fmt++; goto process_flags;
348
348
      case '0':
349
 
        is_zero_padded= TRUE; fmt++; goto process_flags;
 
349
        is_zero_padded= true; fmt++; goto process_flags;
350
350
      case '#':
351
351
        /** @todo Implement "#" conversion flag. */  fmt++; goto process_flags;
352
352
      case ' ':