dmidecode-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [dmidecode] Dmidecode 2.6 to be released soon


From: Petter Reinholdtsen
Subject: Re: [dmidecode] Dmidecode 2.6 to be released soon
Date: Fri, 18 Feb 2005 01:00:25 +0100
User-agent: Mutt/1.4.1i

[Jean Delvare]
> Please give CVS proper testing so as to make sure that no critical
> bug is left.

I ran a small test trying to build a debian package using the CVS
version, and got this error:

  biosdecode.c:505: syntax error before `int'

This patch fixes the problem:

Index: biosdecode.c
===================================================================
RCS file: /cvsroot/dmidecode/dmidecode/biosdecode.c,v
retrieving revision 1.23
diff -u -3 -p -u -r1.23 biosdecode.c
--- biosdecode.c        10 Feb 2005 20:57:13 -0000      1.23
+++ biosdecode.c        17 Feb 2005 23:59:01 -0000
@@ -502,7 +502,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;





reply via email to

[Prev in Thread] Current Thread [Next in Thread]