Replaced 'return' with DBUG_RETURN() in the fix for bug #31566.

This commit is contained in:
unknown 2007-10-25 08:19:57 +04:00
parent ddd38de904
commit c63f2e3fb6

View File

@ -31,7 +31,7 @@ uint my_write(int Filedes, const byte *Buffer, uint Count, myf MyFlags)
/* The behavior of write(fd, buf, 0) is not portable */
if (unlikely(!Count))
return 0;
DBUG_RETURN(0);
for (;;)
{