From: <svn...@op...> - 2009-04-01 03:40:47
|
Author: cdfrey Date: Wed Apr 1 05:40:33 2009 New Revision: 5507 URL: http://www.opensync.org/changeset/5507 Log: Removed unneeded cast for osync_marshal_read_buffer() due to API change Modified: format-plugins/xmlformat/trunk/src/xmlformat.c Modified: format-plugins/xmlformat/trunk/src/xmlformat.c ============================================================================== --- format-plugins/xmlformat/trunk/src/xmlformat.c Wed Apr 1 00:15:45 2009 (r5506) +++ format-plugins/xmlformat/trunk/src/xmlformat.c Wed Apr 1 05:40:33 2009 (r5507) @@ -103,7 +103,7 @@ void *buffer = NULL; unsigned int size = 0; OSyncXMLFormat *xmlformat = NULL; - osync_marshal_read_buffer(marshal, &buffer, (int *)&size); + osync_marshal_read_buffer(marshal, &buffer, &size); xmlformat = osync_xmlformat_parse((char *)buffer, size, error); if (!xmlformat) { |