diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-12-20 20:03:35 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-12-20 20:03:35 -0500 |
commit | d017d5af9cce1cba960ee8561ec08bf8f04a93b2 (patch) | |
tree | 0e155458441c85459a4d43f12bb0ff8fbf846772 /src/rc/_usage.h | |
parent | 32aeb7407bf5cdc354694b73f4c36376922f7c05 (diff) |
change getopt definition to elide pointer storage
Make this a const pointer to the storage directly instead of a pointer
variable that points to the storage. Makes the code slightly smaller.
Diffstat (limited to 'src/rc/_usage.h')
-rw-r--r-- | src/rc/_usage.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rc/_usage.h b/src/rc/_usage.h index fd20971b..a66e18b9 100644 --- a/src/rc/_usage.h +++ b/src/rc/_usage.h @@ -46,7 +46,7 @@ extern const char *applet; extern const char *extraopts; -extern const char *getoptstring; +extern const char getoptstring[]; extern const struct option longopts[]; extern const char * const longopts_help[]; extern const char *usagestring; |