Index: trunk/Ohana/src/libohana/include/ohana_allocate.h
===================================================================
--- trunk/Ohana/src/libohana/include/ohana_allocate.h	(revision 30725)
+++ trunk/Ohana/src/libohana/include/ohana_allocate.h	(revision 30726)
@@ -49,5 +49,5 @@
 
 # define REALLOCATE(PTR,TYPE,SIZE) { 					\
-  PTR = (TYPE *) realloc(PTR,(unsigned)(MAX(((SIZE)*((int)sizeof(TYPE))),1))); \
+  PTR = (TYPE *) realloc(PTR,(size_t)(MAX(((SIZE)*((int)sizeof(TYPE))),1))); \
   if (PTR == NULL) {							\
     fprintf(stderr,"failed realloc at %d in %s\n", __LINE__, __FILE__);	\
@@ -57,5 +57,5 @@
   if ((NCURR) >= (SIZE)) {				\
     SIZE += DELTA;							\
-    PTR = (TYPE *) realloc(PTR,(unsigned)(MAX(((SIZE)*((int)sizeof(TYPE))),1))); \
+    PTR = (TYPE *) realloc(PTR,(size_t)(MAX(((SIZE)*((int)sizeof(TYPE))),1))); \
     if (PTR == NULL) {							\
       fprintf(stderr,"failed realloc increment at %d in %s\n", __LINE__, __FILE__); \
