diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2017-04-21 14:18:21 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2017-04-21 14:18:21 -0700 |
commit | f1557bea361602224f07965b8292b694ef570690 (patch) | |
tree | f9d56542d179dbd45f3f12117c227dc2ff117755 /src/rototiller.h | |
parent | d1a7170c350553bb55f3a55fc807802fee0ed33e (diff) |
*: s/renderer/module/g
Make consistent with the source directory structure naming.
Diffstat (limited to 'src/rototiller.h')
-rw-r--r-- | src/rototiller.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rototiller.h b/src/rototiller.h index 0ff2c3f..f75ca11 100644 --- a/src/rototiller.h +++ b/src/rototiller.h @@ -1,12 +1,12 @@ #ifndef _ROTOTILLER_H #define _ROTOTILLER_H -typedef struct rototiller_renderer_t { +typedef struct rototiller_module_t { void (*render)(fb_fragment_t *); char *name; char *description; char *author; char *license; -} rototiller_renderer_t; +} rototiller_module_t; #endif |