~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_sync.c

  • Committer: Brian Aker
  • Date: 2008-07-20 07:10:24 UTC
  • Revision ID: brian@tangent.org-20080720071024-o1wv37gyy8ln5xgk
More my_bool cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
94
94
  RETURN
95
95
    0 if ok, !=0 if error
96
96
*/
97
 
int my_sync_dir(const char *dir_name __attribute__((unused)),
98
 
                myf my_flags __attribute__((unused)))
 
97
int my_sync_dir(const char *dir_name, myf my_flags)
99
98
{
100
99
#ifdef NEED_EXPLICIT_SYNC_DIR
101
100
  File dir_fd;
134
133
  RETURN
135
134
    0 if ok, !=0 if error
136
135
*/
137
 
int my_sync_dir_by_file(const char *file_name __attribute__((unused)),
138
 
                        myf my_flags __attribute__((unused)))
 
136
int my_sync_dir_by_file(const char *file_name, myf my_flags)
139
137
{
140
138
#ifdef NEED_EXPLICIT_SYNC_DIR
141
139
  char dir_name[FN_REFLEN];