94d4c26
--- client/packhand.c	(révision 17882)
94d4c26
+++ client/packhand.c	(copie de travail)
94d4c26
@@ -2531,7 +2531,7 @@
94d4c26
 
94d4c26
   if (TILE_KNOWN_SEEN == old_known && TILE_KNOWN_SEEN != new_known) {
94d4c26
     /* This is an error.  So first we log the error, then make an assertion.
94d4c26
-     * But for NDEBUG clients we fix the error. */
94d4c26
+     * But for non DEBUG clients we fix the error. */
94d4c26
     unit_list_iterate(ptile->units, punit) {
94d4c26
       freelog(LOG_ERROR, "%p %d %s at (%d,%d) %s",
94d4c26
               punit,
94d4c26
@@ -2540,7 +2540,9 @@
94d4c26
               TILE_XY(punit->tile),
94d4c26
               player_name(unit_owner(punit)));
94d4c26
     } unit_list_iterate_end;
94d4c26
+#ifdef DEBUG
94d4c26
     assert(unit_list_size(ptile->units) == 0);
94d4c26
+#endif /* DEBUG */
94d4c26
     unit_list_clear(ptile->units);
94d4c26
   }