< prev index next >

src/share/vm/utilities/hashtable.cpp

Print this page

        

@@ -203,11 +203,11 @@
                               *p != NULL;
                                p = (*p)->next_addr()) {
       if (*top + entry_size() > end) {
         report_out_of_shared_space(SharedMiscData);
       }
-      *p = (BasicHashtableEntry<F>*)memcpy(*top, *p, entry_size());
+      *p = (BasicHashtableEntry<F>*)memcpy(*top, (void*)*p, entry_size());
       *top += entry_size();
     }
   }
   *plen = (char*)(*top) - (char*)plen - sizeof(*plen);
 

@@ -283,11 +283,11 @@
   *top += sizeof(intptr_t);
 
   if (*top + len > end) {
     report_out_of_shared_space(SharedMiscData);
   }
-  _buckets = (HashtableBucket<F>*)memcpy(*top, _buckets, len);
+  _buckets = (HashtableBucket<F>*)memcpy(*top, (void*)_buckets, len);
   *top += len;
 }
 
 
 #ifndef PRODUCT
< prev index next >