Commit 5fdbc3f6 authored by Sergei Golubchik's avatar Sergei Golubchik

compiler warning

extra/mariabackup/ds_buffer.c:145:9: warning: pointer targets in assignment differ in signedness [-Wpointer-sign]
parent 0b74a1fa
......@@ -142,7 +142,7 @@ buffer_write(ds_file_t *file, const uchar *buf, size_t len)
buffer_file->pos = 0;
buf = (const char *) buf + bytes;
buf += bytes;
len -= bytes;
} else {
/* We don't have any buffered bytes, just write
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment