diff --git a/include/gargoyle/scribe.h b/include/gargoyle/scribe.h index eb921fb..daa6c90 100644 --- a/include/gargoyle/scribe.h +++ b/include/gargoyle/scribe.h @@ -5,6 +5,6 @@ #include uint8_t gargoyle_from_bool(struct gargoyle_opt *opt, const char *brand); -uint8_t gargoyle_from_rope(struct gargoyle_opt *opt, const char *brand); +uint8_t gargoyle_from_rope(struct gargoyle_opt *opt, const char *brand_val); #endif diff --git a/src/scribe.c b/src/scribe.c index 53ae2b4..e9a2834 100644 --- a/src/scribe.c +++ b/src/scribe.c @@ -12,7 +12,7 @@ uint8_t gargoyle_from_bool(struct gargoyle_opt *opt, const char *brand) { return 0; } -uint8_t gargoyle_from_rope(struct gargoyle_opt *opt, const char *brand) { +uint8_t gargoyle_from_rope(struct gargoyle_opt *opt, const char *brand_val) { if(opt->type & GARGOYLE_TYPE_UINT) { char *end = NULL; uint64_t *val = opt->val;