~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to vio/viotest.cc

  • Committer: Jay Pipes
  • Date: 2008-07-17 18:29:02 UTC
  • mto: This revision was merged to the branch mainline in revision 182.
  • Revision ID: jay@mysql.com-20080717182902-y2ofkl7jvmhl7gf5
Final removal of DBUG from vio/ & Round 1 cleanup of include/

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
        int             fd = -1;
23
23
        char*           hh = "hshshsh\n";
24
24
 
25
 
        DBUG_ENTER("main");
26
 
        DBUG_PROCESS(argv[0]);
27
 
        DBUG_PUSH("d:t");
28
 
 
29
25
        fd = open("/dev/tty", O_WRONLY);
30
26
        if (fd<0)
31
27
        {
42
38
        delete fs;
43
39
        delete ss;
44
40
 
45
 
        DBUG_RETURN(0);
 
41
        return(0);
46
42
}
47
43