Fix compilation warning.

This commit is contained in:
Simon Kelley
2015-07-08 22:40:57 +01:00
parent f6d6956261
commit 45c5cb1f8f

View File

@@ -42,14 +42,13 @@ static char *inotify_buffer;
Return value is malloc'ed */ Return value is malloc'ed */
static char *my_readlink(char *path) static char *my_readlink(char *path)
{ {
ssize_t rc; ssize_t rc, size = 64;
size_t size = 64;
char *buf; char *buf;
while (1) while (1)
{ {
buf = safe_malloc(size); buf = safe_malloc(size);
rc = readlink(path, buf, size); rc = readlink(path, buf, (size_t)size);
if (rc == -1) if (rc == -1)
{ {