Skip to content
Snippets Groups Projects
Commit 0f884ef5 authored by edgrif's avatar edgrif
Browse files

fix trivial compiler casting bug.

parent 74b16454
No related branches found
No related tags found
No related merge requests found
......@@ -27,9 +27,9 @@
*
* Exported functions: See XXXXXXXXXXXXX.h
* HISTORY:
* Last edited: Apr 1 11:32 2009 (edgrif)
* Last edited: Mar 29 09:16 2010 (edgrif)
* Created: Tue Oct 28 16:20:33 2008 (rds)
* CVS info: $Id: zmapFeatureOutput.c,v 1.9 2010-03-19 08:56:42 mh17 Exp $
* CVS info: $Id: zmapFeatureOutput.c,v 1.10 2010-03-29 09:32:44 edgrif Exp $
*-------------------------------------------------------------------
*/
......@@ -143,11 +143,11 @@ gboolean zMapFeatureDumpToFileName(ZMapFeatureContext feature_context,char *file
{
gboolean result = FALSE ;
GIOChannel *file ;
gssize len;
gsize len;
file = g_io_channel_new_file(filename,"a",error_out) ;
file = g_io_channel_new_file(filename, "a", error_out) ;
g_io_channel_write_chars(file,header,strlen(header),&len,error_out);
g_io_channel_write_chars(file, header, strlen(header), &len, error_out);
result = zMapFeatureContextDump(feature_context, styles, file, error_out) ;
......
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