Revision: 1862
http://gtkpod.svn.sourceforge.net/gtkpod/?rev=1862&view=rev
Author: Sikon
Date: 2007-12-26 20:23:36 -0800 (Wed, 26 Dec 2007)
Log Message:
-----------
stderr thing
Modified Paths:
--------------
gtkpod/trunk/ChangeLog
gtkpod/trunk/src/file_convert.c
Modified: gtkpod/trunk/ChangeLog
===================================================================
--- gtkpod/trunk/ChangeLog 2007-12-27 04:18:46 UTC (rev 1861)
+++ gtkpod/trunk/ChangeLog 2007-12-27 04:23:36 UTC (rev 1862)
@@ -2,6 +2,9 @@
* INSTALL:
Updated dependency versions.
+
+ * src/file_convert.c:
+ Renamed structure member "stderr", build issues reported
2007-12-26 Matvey Kozhev <sikon at users.sourceforge.net>
Modified: gtkpod/trunk/src/file_convert.c
===================================================================
--- gtkpod/trunk/src/file_convert.c 2007-12-27 04:18:46 UTC (rev 1861)
+++ gtkpod/trunk/src/file_convert.c 2007-12-27 04:23:36 UTC (rev 1862)
@@ -216,7 +216,7 @@
gchar *fname_root; /* filename root of converted file */
gchar *fname_extension; /* filename extension of converted file */
GPid pid; /* PID of child doing the conversion */
- gint stderr; /* stderr of child doing the conversion */
+ gint child_stderr; /* stderr of child doing the conversion */
Track *track; /* for reference, don't access inside threads! */
iTunesDB *itdb; /* for reference, don't access inside threads! */
gint threadnum; /* number of thread working on this track */
@@ -2308,7 +2308,7 @@
&ctr->pid, /* child's PID */
NULL, /* child's stdin */
NULL, /* child's stdout */
- &ctr->stderr, /* child's stderr */
+ &ctr->child_stderr, /* child's stderr */
&error);
child_pid = ctr->pid;
@@ -2334,7 +2334,7 @@
gint status;
/* set up i/o channel to main thread */
- ctr->gio_channel = g_io_channel_unix_new (ctr->stderr);
+ ctr->gio_channel = g_io_channel_unix_new (ctr->child_stderr);
g_io_channel_set_flags (ctr->gio_channel,
G_IO_FLAG_NONBLOCK, NULL);
g_io_channel_set_close_on_unref (ctr->gio_channel, TRUE);
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
gtkpod-cvs2 mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gtkpod-cvs2