gnome-commander r1867 - in trunk: . doc/C src/intviewer



Author: epiotr
Date: Thu Jul 10 21:56:19 2008
New Revision: 1867
URL: http://svn.gnome.org/viewvc/gnome-commander?rev=1867&view=rev

Log:
Fix for problem #539753 (build error on Solaris)

Modified:
   trunk/ChangeLog
   trunk/NEWS
   trunk/doc/C/gnome-commander.xml
   trunk/src/intviewer/fileops.cc

Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS	(original)
+++ trunk/NEWS	Thu Jul 10 21:56:19 2008
@@ -3,7 +3,7 @@
 ---------------
 
 Bug fixes:
- * Fixed problem #... (...)
+ * Fixed problems #539753 (build error on Solaris)
  * Fixed problem with file sorting in advanced file rename tool
  * Build fixes
 

Modified: trunk/doc/C/gnome-commander.xml
==============================================================================
--- trunk/doc/C/gnome-commander.xml	(original)
+++ trunk/doc/C/gnome-commander.xml	Thu Jul 10 21:56:19 2008
@@ -5918,7 +5918,7 @@
                 <para>
                     <itemizedlist>
                         <listitem>
-                            <para>Fixed problem #... (...)</para>
+                            <para>Fixed problem 539753 (build error on Solaris)</para>
                         </listitem>
                         <listitem>
                             <para>Fixed problem with file sorting in advanced file rename tool</para>

Modified: trunk/src/intviewer/fileops.cc
==============================================================================
--- trunk/src/intviewer/fileops.cc	(original)
+++ trunk/src/intviewer/fileops.cc	Thu Jul 10 21:56:19 2008
@@ -336,7 +336,7 @@
 
 #ifdef HAVE_MMAP
     if (ops->mmapping)
-        munmap (ops->data, ops->s.st_size);
+        munmap ((char *) ops->data, ops->s.st_size);
 #endif                // HAVE_MMAP
     gv_file_close (ops);
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]