~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_init.c

  • Committer: Jay Pipes
  • Date: 2008-07-17 22:37:25 UTC
  • mto: This revision was merged to the branch mainline in revision 182.
  • Revision ID: jay@mysql.com-20080717223725-hsw99zn0h4hepbyi
Final round of removal of DBUG in mysys/, including Makefile

Show diffs side-by-side

added added

removed removed

Lines of Context:
95
95
    Sun CC: Sun C++ 5.6 2004/06/02 for x86, and should not be
96
96
    optimized until this compiler is not in use anymore
97
97
  */
98
 
  FILE *info_file= DBUG_FILE;
99
 
  bool print_info= (info_file != stderr);
100
 
 
101
 
  if (!info_file)
102
 
  {
103
 
    info_file= stderr;
104
 
    print_info= 0;
105
 
  }
 
98
  FILE *info_file= stderr;
 
99
  bool print_info= 0;
106
100
 
107
101
  if ((infoflag & MY_CHECK_ERROR) || print_info)
108
102