diff src/intl-win32.c @ 2658:a48989ca6db3

[xemacs-hg @ 2005-03-13 09:20:58 by crestani] Fix native Windows build if DEBUG_XEMACS is not defined. * alloc.c (MALLOC_BEGIN): Remove unused parameter. * intl-win32.c (unicode_multibyte_convert_size): Move function call out of assert.
author crestani
date Sun, 13 Mar 2005 09:21:04 +0000
parents 3d8143fc88e1
children 9905c1e522b8
line wrap: on
line diff
--- a/src/intl-win32.c	Sat Mar 12 22:51:30 2005 +0000
+++ b/src/intl-win32.c	Sun Mar 13 09:21:04 2005 +0000
@@ -1972,8 +1972,9 @@
 				Bytecount src_size, int to_unicode, int cp)
 {
   alloca_convert_vals vals;
-
-  assert (find_pos_of_existing_active_alloca_convert (srctext) < 0);
+  
+  int pos = find_pos_of_existing_active_alloca_convert (srctext);
+  assert (pos < 0);
 
   vals.srctext = srctext;