diff options
author | Thomas Voss <mail@thomasvoss.com> | 2022-12-24 03:22:00 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2022-12-24 03:22:00 +0100 |
commit | 9cca30d4024694cfc5bc7d84031c6b5e10c5b201 (patch) | |
tree | fcd2885a5542be08b4d2b94284be880a0154eb30 /src | |
parent | 6cc3edc596d9ab925a6496d62202445719eddc7c (diff) |
Remember to actually return 0
Diffstat (limited to 'src')
-rw-r--r-- | src/gevector.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gevector.h b/src/gevector.h index ce86599..dc700e1 100644 --- a/src/gevector.h +++ b/src/gevector.h @@ -48,6 +48,7 @@ vec->items[j] = vec->items[j - 1]; \ vec->items[i] = item; \ vec->size++; \ + return 0; \ } \ \ int \ |