diff options
author | wpaul <wpaul@FreeBSD.org> | 2005-02-16 18:37:14 +0000 |
---|---|---|
committer | wpaul <wpaul@FreeBSD.org> | 2005-02-16 18:37:14 +0000 |
commit | e61691a1db78901af5fb359809ac21ea0297132e (patch) | |
tree | e2850d1842d6118ff29969e436e396b8b6970ad9 /usr.sbin | |
parent | a372ba85cee8186936a67b01506b82c45df2adfe (diff) | |
download | FreeBSD-src-e61691a1db78901af5fb359809ac21ea0297132e.zip FreeBSD-src-e61691a1db78901af5fb359809ac21ea0297132e.tar.gz |
Re-staticize a few functions I un-staticized for debugging purposes
on amd64 and accidentally forgot to put back. (Have I mentioned that
gdb on amd64 needs work? It does. Boy howdy.)
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/ndiscvt/inf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ndiscvt/inf.c b/usr.sbin/ndiscvt/inf.c index e6389fc..e872d45 100644 --- a/usr.sbin/ndiscvt/inf.c +++ b/usr.sbin/ndiscvt/inf.c @@ -61,7 +61,7 @@ static void dump_deviceids_pci (void); static void dump_deviceids_pcmcia (void); static void dump_pci_id (const char *); static void dump_pcmcia_id (const char *); -/*static*/ void dump_regvals (void); +static void dump_regvals (void); static void dump_paramreg (const struct section *, const struct reg *, int); @@ -559,7 +559,7 @@ dump_paramreg(const struct section *s, const struct reg *r, int devidx) return; } -/*static*/ void +static void dump_regvals(void) { struct assign *manf, *dev; |