Revision: 2380
          http://gtkpod.svn.sourceforge.net/gtkpod/?rev=2380&view=rev
Author:   tmzullinger
Date:     2009-08-14 15:53:36 +0000 (Fri, 14 Aug 2009)

Log Message:
-----------
file_convert: Fix missing variable in warning

The conv-cachedir variable was missing from a gtkpod_warning() call,
leaving users wondering what "Could not create '%s'." might mean.

Modified Paths:
--------------
    gtkpod/trunk/ChangeLog
    gtkpod/trunk/src/file_convert.c

Modified: gtkpod/trunk/ChangeLog
===================================================================
--- gtkpod/trunk/ChangeLog      2009-08-07 20:49:30 UTC (rev 2379)
+++ gtkpod/trunk/ChangeLog      2009-08-14 15:53:36 UTC (rev 2380)
@@ -1,3 +1,11 @@
+2009-08-14  Todd Zullinger  <[email protected]>
+
+       * src/file_convert.c: Fix missing variable in warning
+
+         The conv-cachedir variable was missing from a
+         gtkpod_warning() call, leaving users wondering what "Could
+         not create '%s'." might mean.
+
 2009-08-07 Paul Richardson <phantom_sf at users.sourceforge.net>
 
        * src/files_itunes.db

Modified: gtkpod/trunk/src/file_convert.c
===================================================================
--- gtkpod/trunk/src/file_convert.c     2009-08-07 20:49:30 UTC (rev 2379)
+++ gtkpod/trunk/src/file_convert.c     2009-08-14 15:53:36 UTC (rev 2380)
@@ -1348,7 +1348,8 @@
        {
            if ((g_mkdir (conv->cachedir, 0777)) == -1)
            {
-               gtkpod_warning (_("Could not create '%s'. Filetype conversion 
will not work.\n"));
+               gtkpod_warning (_("Could not create '%s'. Filetype conversion 
will not work.\n"),
+                                 conv->cachedir);
                g_free (conv->cachedir);
                conv->cachedir = NULL;
            }


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
gtkpod-cvs2 mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gtkpod-cvs2

Reply via email to