~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_messnc.c

  • Committer: Jay Pipes
  • Date: 2008-07-17 21:15:06 UTC
  • mto: This revision was merged to the branch mainline in revision 182.
  • Revision ID: jay@mysql.com-20080717211506-1nntrb8v42ojjgdo
Phase 5 - Remove DBUG from mysys

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
void my_message_no_curses(uint error __attribute__((unused)),
19
19
                         const char *str, myf MyFlags)
20
20
{
21
 
  DBUG_ENTER("my_message_no_curses");
22
 
  DBUG_PRINT("enter",("message: %s",str));
23
21
  (void) fflush(stdout);
24
22
  if (MyFlags & ME_BELL)
25
23
    (void) fputc('\007',stderr);                                /* Bell */
30
28
  (void)fputs(str,stderr);
31
29
  (void)fputc('\n',stderr);
32
30
  (void)fflush(stderr);
33
 
  DBUG_VOID_RETURN;
 
31
  return;
34
32
}