summaryrefslogtreecommitdiff
path: root/src/storage.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/storage.h')
-rw-r--r--src/storage.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/storage.h b/src/storage.h
index 2601ef7..3edcdcf 100644
--- a/src/storage.h
+++ b/src/storage.h
@@ -61,11 +61,11 @@ void
internal_registerComponent(storage_t *storage, const char *name, size_t size);
// Not intended for use outside of macros
-void * // NULL if component with such name is not found
+char * // NULL if component with such name is not found
internal_addComponent(storage_t *this, entity_t idx, const char *name);
// Not intended for use outside of macros
-void * // NULL if component is not found
+char * // NULL if component is not found
internal_getComponent(storage_t *this, entity_t idx, const char *name);
#endif // storage_h_INCLUDED