diff mac/dw.m @ 1446:0d4fdf646caf

Fix clang integer conversion warning on 64bit Mac.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Fri, 09 Dec 2011 21:24:31 +0000
parents 02a329b2b0cd
children 632346743f46
line wrap: on
line diff
--- a/mac/dw.m	Thu Dec 08 23:49:55 2011 +0000
+++ b/mac/dw.m	Fri Dec 09 21:24:31 2011 +0000
@@ -8440,7 +8440,7 @@
             int depth = 0;
                 
             /* Calculate space requirements */
-            _resize_box(thisbox, &depth, width, height, 1);
+            _resize_box(thisbox, &depth, (int)width, (int)height, 1);
           
             /* Might need to take into account the window border here */
             if(width < 1) width = thisbox->minwidth;