diff options
author | Rob Landley <rob@landley.net> | 2007-01-31 15:23:21 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2007-01-31 15:23:21 -0500 |
commit | edee7ddeb58c706456bba60f5a7aa9a071643c57 (patch) | |
tree | e795480ae0099748a707773b94e44d1520b97e6f /scripts | |
parent | de05a7024f4be6826d05c40aa029fe2bbf6d2818 (diff) | |
download | toybox-edee7ddeb58c706456bba60f5a7aa9a071643c57.tar.gz |
Missing comma, and slight simplification in defconfig sed invocation.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/install.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install.c b/scripts/install.c index b5744868..5564fa50 100644 --- a/scripts/install.c +++ b/scripts/install.c @@ -9,7 +9,7 @@ #undef NEWTOY #undef OLDTOY #define NEWTOY(name, opts, flags) {#name, 0, opts, flags}, -#define OLDTOY(name, oldname, opts, flags) {#name, 0, opts, flags} +#define OLDTOY(name, oldname, opts, flags) {#name, 0, opts, flags}, // Populate toy_list[]. |