From e7369539f2ccab7db4fb91f6ae470d8a5a4d25fb Mon Sep 17 00:00:00 2001 From: nima Date: Thu, 4 Sep 2008 06:09:55 +0000 Subject: Cleaning up of the dmidecode module, mostly conversion of things that can be Python `None's or `Int's but were `String'. Replaced a meaningless int dictionary key to `data'. git-svn-id: svn://svn.autonomy.net.au/python-dmidecode@68 abc39116-655e-4be6-ad55-d661dc543056 --- dmidecode.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dmidecode.h') diff --git a/dmidecode.h b/dmidecode.h index ab4f820..5a0a768 100644 --- a/dmidecode.h +++ b/dmidecode.h @@ -40,6 +40,6 @@ const char *dmi_system_uuid(u8 *p, char *_); PyObject *dmi_system_uuid_py(u8 *p); const char *dmi_chassis_type(u8 code); const char *dmi_processor_family(u8 code); -const char *dmi_processor_frequency(u8 *p, char *_); +int dmi_processor_frequency(u8 *p); int submain(int argc, char * const argv[]); -- cgit