diff options
author | nima <nima@abc39116-655e-4be6-ad55-d661dc543056> | 2008-09-04 06:09:55 +0000 |
---|---|---|
committer | nima <nima@abc39116-655e-4be6-ad55-d661dc543056> | 2008-09-04 06:09:55 +0000 |
commit | e7369539f2ccab7db4fb91f6ae470d8a5a4d25fb (patch) | |
tree | d562a3d5ebc7bd0e2122e84d5cfb649d76068bff /dmidecode.h | |
parent | b3880a3305dcdd866638202b9da95cd99f06b085 (diff) | |
download | python-dmidecode-e7369539f2ccab7db4fb91f6ae470d8a5a4d25fb.tar.gz python-dmidecode-e7369539f2ccab7db4fb91f6ae470d8a5a4d25fb.tar.xz python-dmidecode-e7369539f2ccab7db4fb91f6ae470d8a5a4d25fb.zip |
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
Diffstat (limited to 'dmidecode.h')
-rw-r--r-- | dmidecode.h | 2 |
1 files changed, 1 insertions, 1 deletions
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[]); |