From: Keith Packard Date: Thu, 1 May 2014 05:12:30 +0000 (-0700) Subject: ao-load: Make ao_sym static to avoid collision with ao-editaltos X-Git-Tag: 1.3.2.2~130 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=35efd4e51ece706234f80c076eb7f4f70c66098d;ds=sidebyside 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 --- 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;