diff options
author | Keith Packard <keithp@keithp.com> | 2014-04-30 22:12:30 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2014-04-30 22:12:30 -0700 |
commit | 35efd4e51ece706234f80c076eb7f4f70c66098d (patch) | |
tree | e2266766a5a5d8698dc629ad467a63c5d92d1d3f /ao-tools | |
parent | fd406000659a11862e05c22dbb20cdb738f56b01 (diff) |
ao-load: Make ao_sym static to avoid collision with ao-editaltos
ao-load doesn't use ao-editaltos at this point, but does share the
same name for the symbol table. To make the linker happier, make the
ao-load version static.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'ao-tools')
-rw-r--r-- | ao-tools/ao-load/ao-load.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ao-tools/ao-load/ao-load.c b/ao-tools/ao-load/ao-load.c index c1f55149..0cf03772 100644 --- a/ao-tools/ao-load/ao-load.c +++ b/ao-tools/ao-load/ao-load.c @@ -26,7 +26,7 @@ #define AO_USB_DESC_STRING 3 -struct sym { +static struct sym { unsigned addr; char *name; int required; |