vte r2291 - in trunk: . src



Author: chpe
Date: Tue Dec  2 12:26:06 2008
New Revision: 2291
URL: http://svn.gnome.org/viewvc/vte?rev=2291&view=rev

Log:
	Bug 560667 â invalid definition of VTE_INVALID_SOURCE

	* src/vte-private.h: Fix VTE_INVALID_SOURCE define to use 0 instead of
	-1.

Modified:
   trunk/ChangeLog
   trunk/src/vte-private.h

Modified: trunk/src/vte-private.h
==============================================================================
--- trunk/src/vte-private.h	(original)
+++ trunk/src/vte-private.h	Tue Dec  2 12:26:06 2008
@@ -91,7 +91,7 @@
 #define VTE_CELL_BBOX_SLACK		1
 
 #define I_(string) (g_intern_static_string(string))
-#define VTE_INVALID_SOURCE ((guint)-1) /* A number which can never be a valid source ID */
+#define VTE_INVALID_SOURCE (0) /* A number which can never be a valid source ID */
 
 /* The structure we use to hold characters we're supposed to display -- this
  * includes any supported visible attributes. */



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