~mordred/drizzle/codestyle

« back to all changes in this revision

Viewing changes to drizzled/discover.cc

  • Committer: Monty
  • Date: 2008-10-02 05:41:33 UTC
  • mfrom: (398.1.10 codestyle)
  • Revision ID: mordred@scylla.inaugust.com-20081002054133-tyxv5bmqpazfaqqi
Merged up to 408 of stdint-includes-fix.

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
  
77
77
 err:
78
78
  if (file > 0)
79
 
    VOID(my_close(file,MYF(MY_WME)));
 
79
    my_close(file,MYF(MY_WME));
80
80
  
81
81
 err_end:                     /* Here when no file */
82
82
  return(error);
109
109
  {
110
110
    if (my_write(file, frmdata, len,MYF(MY_WME | MY_NABP)))
111
111
      error= 2;
112
 
    VOID(my_close(file,MYF(0)));
 
112
    my_close(file,MYF(0));
113
113
  }
114
114
  return(error);
115
115
} /* writefrm */