diff --git a/modules/hamsandwich/DataHandler.h b/modules/hamsandwich/DataHandler.h index fe253ff3..40fe970e 100644 --- a/modules/hamsandwich/DataHandler.h +++ b/modules/hamsandwich/DataHandler.h @@ -92,7 +92,7 @@ public: Data(int type, void *ptr) : m_data(ptr), m_index(NULL), m_type(type) { /* nothing */ }; - Data(int type, void *ptr, int *cptr) : m_data(ptr), m_index(NULL), m_type(type) + Data(int type, void *ptr, int *cptr) : m_data(ptr), m_index(cptr), m_type(type) { /* nothing */ }; ~Data()