diff options
Diffstat (limited to 'src/ramps.h')
-rw-r--r-- | src/ramps.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ramps.h b/src/ramps.h index 7aa08fd..d01a22e 100644 --- a/src/ramps.h +++ b/src/ramps.h @@ -68,7 +68,7 @@ union gamma_ramps * @param ramps_size The byte-size of ramps * @return The number of marshalled byte */ -size_t gamma_ramps_marshal(const union gamma_ramps* this, char* buf, size_t ramps_size); +size_t gamma_ramps_marshal(const union gamma_ramps* this, void* buf, size_t ramps_size); /** * Unmarshal a ramp trio @@ -78,5 +78,5 @@ size_t gamma_ramps_marshal(const union gamma_ramps* this, char* buf, size_t ramp * @param ramps_size The byte-size of ramps * @return The number of unmarshalled bytes, 0 on error */ -size_t gamma_ramps_unmarshal(union gamma_ramps* this, const char* buf, size_t ramps_size); +size_t gamma_ramps_unmarshal(union gamma_ramps* this, const void* buf, size_t ramps_size); |