~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/include/pars0pars.h

  • Committer: Monty Taylor
  • Date: 2010-11-25 01:53:19 UTC
  • mto: (1953.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1955.
  • Revision ID: mordred@inaugust.com-20101125015319-ia85msn25uemopgc
Re-enabled -Wformat and then cleaned up the carnage.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*****************************************************************************
2
2
 
3
 
Copyright (c) 1996, 2010, Innobase Oy. All Rights Reserved.
 
3
Copyright (c) 1996, 2009, Innobase Oy. All Rights Reserved.
4
4
 
5
5
This program is free software; you can redistribute it and/or modify it under
6
6
the terms of the GNU General Public License as published by the Free Software
521
521
 
522
522
char buf[8];
523
523
mach_write_to_8(buf, val);
524
 
pars_info_add_literal(info, name, buf, 8, DATA_FIXBINARY, 0);
 
524
pars_info_add_literal(info, name, buf, 8, DATA_BINARY, 0);
525
525
 
526
526
except that the buffer is dynamically allocated from the info struct's
527
527
heap. */
528
528
UNIV_INTERN
529
529
void
530
 
pars_info_add_ull_literal(
531
 
/*======================*/
 
530
pars_info_add_dulint_literal(
 
531
/*=========================*/
532
532
        pars_info_t*    info,           /*!< in: info struct */
533
533
        const char*     name,           /*!< in: name */
534
 
        ib_uint64_t     val);           /*!< in: value */
 
534
        dulint          val);           /*!< in: value */
535
535
/****************************************************************//**
536
536
Add user function. */
537
537
UNIV_INTERN