1
1

changed to unsigned char to simplify pointer arithmetic

This commit was SVN r6231.
Этот коммит содержится в:
Tim Woodall 2005-06-30 18:19:56 +00:00
родитель 926e96a3f7
Коммит b12a3272e8

Просмотреть файл

@ -26,11 +26,11 @@
struct mca_mpool_base_resources_t;
struct mca_mpool_base_registration_t{
struct mca_mpool_base_registration_t {
ompi_list_item_t super;
struct mca_mpool_base_module_t *mpool;
void* base;
void* bound;
unsigned char* base;
unsigned char* bound;
};
typedef struct mca_mpool_base_registration_t mca_mpool_base_registration_t;