diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2025-03-16 13:34:00 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2025-03-16 13:34:00 +0100 |
commit | 0bbe5815fd94129767ec0072d1d7e5e7eff1a6e7 (patch) | |
tree | 1b44e7d6fd8446f8c3e2fc8f1ef3af281d590fab /util/ievents.c | |
parent | 9641459c047738b492ab6002a9d38d286e237721 (diff) | |
parent | 5ad8be875662e799ca8739e267b4879bb281a048 (diff) |
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'util/ievents.c')
-rw-r--r-- | util/ievents.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util/ievents.c b/util/ievents.c index 17b41a4..d9e9054 100644 --- a/util/ievents.c +++ b/util/ievents.c @@ -80,7 +80,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. extern char *progver; /*from ipmiutil.c*/ static char * progname = "ipmiutil events"; #else -static char *progver = "3.19"; +static char *progver = "3.21"; static char *progname = "ievents"; #endif static char fsensdesc = 0; /* 1= get extended sensor descriptions*/ @@ -626,7 +626,7 @@ extern int GetSDR(int recid, int *recnext, uchar *sdr, int szsdr, int *slen); extern double RawToFloat(uchar raw, uchar *psdr); extern char *get_unit_type(uchar iunit, uchar ibase, uchar imod, int flg); extern int find_sdr_by_snum(uchar *psdr,uchar *pcache, uchar snum, uchar sa); -extern int GetSensorType(int snum, uchar *stype, uchar *rtype); +extern int GetSensorType(uchar snum, uchar *stype, uchar *rtype); extern char * get_mfg_str(uchar *rgmfg, int *pmfg); /*from ihealth.c*/ extern int decode_post_intel(int prod, ushort code, char *outbuf,int szbuf); extern int decode_sel_kontron(uchar *evt, char *obuf,int sz,char fdesc,char fdbg); /*oem_kontron.c*/ @@ -678,7 +678,7 @@ extern int GetSDR(int recid, int *recnext, uchar *sdr, int szsdr, int *slen); extern double RawToFloat(uchar raw, uchar *psdr); extern char *get_unit_type(uchar iunit, uchar ibase, uchar imod, int flg); extern int find_sdr_by_snum(uchar *psdr,uchar *pcache, uchar snum, uchar sa); -extern int GetSensorType(int snum, uchar *stype, uchar *rtype); +extern int GetSensorType(uchar snum, uchar *stype, uchar *rtype); #else static int GetSDR(int recid, int *recnext, uchar *sdr, int szsdr, int *slen) { return(-1); } @@ -688,7 +688,7 @@ static char *get_unit_type(uchar iunit, uchar ibase, uchar imod, int flg) { return(""); }; static int find_sdr_by_snum(uchar *psdr,uchar *pcache, uchar snum, uchar sa) { return(-1); } -static int GetSensorType(int snum, uchar *stype, uchar *rtype) +static int GetSensorType(uchar snum, uchar *stype, uchar *rtype) { return(-1); } #endif #endif |