~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_fstream.c

  • Committer: Monty Taylor
  • Date: 2008-09-23 14:19:48 UTC
  • mto: This revision was merged to the branch mainline in revision 419.
  • Revision ID: monty@inaugust.com-20080923141948-ktph2kg13addaxq1
Actually removed VOID() this time.

Show diffs side-by-side

added added

removed removed

Lines of Context:
71
71
#ifdef EINTR
72
72
      if (errno == EINTR)
73
73
      {
74
 
        VOID(my_fseek(stream,seekptr,MY_SEEK_SET,MYF(0)));
 
74
        my_fseek(stream,seekptr,MY_SEEK_SET,MYF(0));
75
75
        continue;
76
76
      }
77
77
#endif
84
84
        if (!(errors++ % MY_WAIT_GIVE_USER_A_MESSAGE))
85
85
          my_error(EE_DISK_FULL,MYF(ME_BELL | ME_NOREFRESH),
86
86
                   "[stream]",my_errno,MY_WAIT_FOR_USER_TO_FIX_PANIC);
87
 
        VOID(sleep(MY_WAIT_FOR_USER_TO_FIX_PANIC));
88
 
        VOID(my_fseek(stream,seekptr,MY_SEEK_SET,MYF(0)));
 
87
        sleep(MY_WAIT_FOR_USER_TO_FIX_PANIC);
 
88
        my_fseek(stream,seekptr,MY_SEEK_SET,MYF(0));
89
89
        continue;
90
90
      }
91
91
#endif