gimp r25412 - in trunk: . plug-ins/common



Author: neo
Date: Tue Apr  8 10:38:11 2008
New Revision: 25412
URL: http://svn.gnome.org/viewvc/gimp?rev=25412&view=rev

Log:
2008-04-08  Sven Neumann  <sven gimp org>

	* plug-ins/common/mng.c (myalloc): removed a redundant (and wrong)
	cast.


Modified:
   trunk/ChangeLog
   trunk/plug-ins/common/mng.c

Modified: trunk/plug-ins/common/mng.c
==============================================================================
--- trunk/plug-ins/common/mng.c	(original)
+++ trunk/plug-ins/common/mng.c	Tue Apr  8 10:38:11 2008
@@ -220,7 +220,7 @@
 {
   gpointer ptr;
 
-  ptr = g_try_malloc ((gulong) size);
+  ptr = g_try_malloc (size);
 
   if (ptr != NULL)
     memset (ptr, 0, size);



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