From: <svn...@op...> - 2009-03-30 05:00:53
|
Author: dgollub Date: Mon Mar 30 07:00:46 2009 New Revision: 5459 URL: http://www.opensync.org/changeset/5459 Log: Fix compiler warning regarding comparing with different signess. This warning got introduced due marshal cleanup with r5458 Modified: plugins/file-sync/src/file.c Modified: plugins/file-sync/src/file.c ============================================================================== --- plugins/file-sync/src/file.c Mon Mar 30 06:59:57 2009 (r5458) +++ plugins/file-sync/src/file.c Mon Mar 30 07:00:46 2009 (r5459) @@ -184,7 +184,7 @@ goto error; osync_marshal_read_string(marshal, &(file->path)); - osync_marshal_read_buffer(marshal, (void *)&(file->data), (int *)&(file->size)); + osync_marshal_read_buffer(marshal, (void *)&(file->data), &(file->size)); *output = (char *)file; *outpsize = sizeof(OSyncFileFormat); |