summaryrefslogtreecommitdiff
path: root/biosdecode.c
diff options
context:
space:
mode:
authorkhali <khali>2008-11-23 18:11:05 +0000
committerkhali <khali>2008-11-23 18:11:05 +0000
commitd250c2f491f2b23e3a833932280ffb9e6bdd441b (patch)
treefdebb8dbfef52501f61456e551cbd6adf583f2eb /biosdecode.c
parent4d21a1e92483cdc021a994fe84975df716dbb96c (diff)
downloaddmidecode-d250c2f491f2b23e3a833932280ffb9e6bdd441b.tar.gz
Stop using the inline keyword. It causes more portability issues than is
worth given how little we care about performance in this tool, and recent versions of gcc know when to inline functions anyway.
Diffstat (limited to 'biosdecode.c')
-rw-r--r--biosdecode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/biosdecode.c b/biosdecode.c
index 6ebb833..8a08cfd 100644
--- a/biosdecode.c
+++ b/biosdecode.c
@@ -545,7 +545,7 @@ static struct bios_entry bios_entries[] = {
};
/* Believe it or not, this is significantly faster than memcmp and strncmp */
-static inline int anchor_match(const struct bios_entry *entry, const char *p)
+static int anchor_match(const struct bios_entry *entry, const char *p)
{
size_t i;