diff options
author | Rob Landley <rob@landley.net> | 2012-02-18 22:44:11 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2012-02-18 22:44:11 -0600 |
commit | 2b54b1ab1a796ef89426f021319c11ff22710947 (patch) | |
tree | 722e6b9c9360965a65e932591fda3478cea290f9 /lib/args.c | |
parent | 4696bfc4057e87ea8a66bd64aafb9ca14a64290e (diff) | |
download | toybox-2b54b1ab1a796ef89426f021319c11ff22710947.tar.gz |
Nathan McSween convinced me compilers that inline memset() can optimize the bzero case pretty well.
Diffstat (limited to 'lib/args.c')
-rw-r--r-- | lib/args.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -181,7 +181,7 @@ void parse_optflaglist(struct getoptflagstate *gof) int i; // Parse option format string - bzero(gof, sizeof(struct getoptflagstate)); + memset(gof, 0, sizeof(struct getoptflagstate)); gof->maxargs = INT_MAX; if (!options) return; |