diff options
author | Rob Landley <rob@landley.net> | 2015-01-02 00:44:27 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2015-01-02 00:44:27 -0600 |
commit | 4f53457205593c965fa31715652e678783a9b89d (patch) | |
tree | d5da1514f8494471699c47b91594385ea865ca2d /scripts | |
parent | 3c9940445e71d9b4701449cc0dc47f7ac32d5803 (diff) | |
download | toybox-4f53457205593c965fa31715652e678783a9b89d.tar.gz |
Need to update install.c for the changed OLDTOY() argument list.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/install.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/install.c b/scripts/install.c index cda8fc22..a9a05500 100644 --- a/scripts/install.c +++ b/scripts/install.c @@ -7,8 +7,8 @@ #undef NEWTOY #undef OLDTOY -#define NEWTOY(name, opts, flags) {#name, 0, opts, flags}, -#define OLDTOY(name, oldname, opts, flags) {#name, 0, opts, flags}, +#define NEWTOY(name, opts, flags) {#name, 0, 0, flags}, +#define OLDTOY(name, oldname, flags) {#name, 0, 0, flags}, // Populate toy_list[]. |