Skip to content
Permalink
Browse files
compiler warning
extra/mariabackup/ds_buffer.c:145:9: warning: pointer targets in assignment differ in signedness [-Wpointer-sign]
  • Loading branch information
vuvova committed Mar 24, 2018
1 parent 0b74a1f commit 5fdbc3f
Showing 1 changed file with 1 addition and 1 deletion.
@@ -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

0 comments on commit 5fdbc3f

Please sign in to comment.