mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Do not use C++ style comments (//) in C source (breaks compilation on aix52).
This commit is contained in:
@ -43,6 +43,6 @@ int main(int argc, char *argv[])
|
|||||||
azclose(&foo);
|
azclose(&foo);
|
||||||
azclose(&foo1);
|
azclose(&foo1);
|
||||||
|
|
||||||
//unlink("test");
|
/* unlink("test"); */
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -166,7 +166,7 @@ int get_byte(s)
|
|||||||
if (s->stream.avail_in == 0)
|
if (s->stream.avail_in == 0)
|
||||||
{
|
{
|
||||||
s->z_eof = 1;
|
s->z_eof = 1;
|
||||||
// if (ferror(s->file)) s->z_err = Z_ERRNO;
|
/* if (ferror(s->file)) s->z_err = Z_ERRNO; */
|
||||||
return EOF;
|
return EOF;
|
||||||
}
|
}
|
||||||
s->stream.next_in = s->inbuf;
|
s->stream.next_in = s->inbuf;
|
||||||
|
Reference in New Issue
Block a user