gnome-games r7205 - trunk/aisleriot



Author: chpe
Date: Sun Jan 13 22:08:46 2008
New Revision: 7205
URL: http://svn.gnome.org/viewvc/gnome-games?rev=7205&view=rev

Log:
Fix int/uint confusion.


Modified:
   trunk/aisleriot/board.c

Modified: trunk/aisleriot/board.c
==============================================================================
--- trunk/aisleriot/board.c	(original)
+++ trunk/aisleriot/board.c	Sun Jan 13 22:08:46 2008
@@ -1316,7 +1316,7 @@
   /* It's ok to call this directly, since the highlight slot is always
    * different from the selection slot!
    */
-  slot_update_card_images_full (board, slot, slot->cards->len - 1);
+  slot_update_card_images_full (board, slot, ((int) slot->cards->len) - 1);
 }
 
 static void



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