diff options
| author | Markus Mittendrein <git@maxmitti.tk> | 2020-04-23 22:43:55 +0200 |
|---|---|---|
| committer | Markus Mittendrein <git@maxmitti.tk> | 2020-04-23 22:43:55 +0200 |
| commit | 0e367485f950b2ab7b9bd1b6c5e4a9b5d328a5dc (patch) | |
| tree | 3e5c4dc21173f0f78419c66ffdd69fe8f0dc8e64 /src/cc4group.h | |
| parent | 1aafff7b2a13034922861032fc74baf60b42dcbc (diff) | |
| download | cc4group-0e367485f950b2ab7b9bd1b6c5e4a9b5d328a5dc.tar.gz cc4group-0e367485f950b2ab7b9bd1b6c5e4a9b5d328a5dc.zip | |
Store MemoryManagement by value instead of pointer
Diffstat (limited to 'src/cc4group.h')
| -rw-r--r-- | src/cc4group.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cc4group.h b/src/cc4group.h index 25f3c53..7e871a2 100644 --- a/src/cc4group.h +++ b/src/cc4group.h @@ -149,7 +149,7 @@ typedef struct { void (*end)(void* const data, void* const arg); void* arg; } CC4Group_MemoryManagement_t; -typedef CC4Group_MemoryManagement_t* CC4Group_MemoryManagement; +typedef CC4Group_MemoryManagement_t CC4Group_MemoryManagement; // callback types for openWithReadCallback |
