summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Mittendrein <git@maxmitti.tk>2019-04-16 22:52:40 +0200
committerMarkus Mittendrein <git@maxmitti.tk>2019-04-16 22:52:40 +0200
commit583970dc48d1d88bf5172572f6d621d06358504b (patch)
tree6ea49588dec774a89f855a037f26bc2f1687cbfa
parentb85e67fe28ddc3c520283b956c727c032d5960d7 (diff)
downloadcc4group-583970dc48d1d88bf5172572f6d621d06358504b.tar.gz
cc4group-583970dc48d1d88bf5172572f6d621d06358504b.zip
Spelling
-rw-r--r--src/cc4group.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cc4group.h b/src/cc4group.h
index 207ef15..6bdccb0 100644
--- a/src/cc4group.h
+++ b/src/cc4group.h
@@ -131,7 +131,7 @@ typedef struct {
// a tmp memory strategy is a function that needs to return a pointer to read- and writable memory at least size big
// in case of an error, the function must return NULL
// in case it returns not NULL, at least the func-member of cleanupJob must be set to a valid function
-// additionally it's data-pointer member may be set to arbitrary data that is needed for successfull cleanup. it will be passed when the cleanup function is called
+// additionally it's data-pointer member may be set to arbitrary data that is needed for successful cleanup. it will be passed when the cleanup function is called
// the strategy also receives the group object for which the memory is needed. this is mainly passed for use internally for accurate error-reporting when using the predefined strategies
typedef void* (*CC4Group_TmpMemoryStrategy)(CC4Group* const this, const size_t size, CC4Group_CleanupJob* cleanupJob);