summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authornima <nima@abc39116-655e-4be6-ad55-d661dc543056>2008-12-19 13:32:35 +0000
committernima <nima@abc39116-655e-4be6-ad55-d661dc543056>2008-12-19 13:32:35 +0000
commitbc5647310466c6f4409bc195e5abf32710abedfa (patch)
treeb8383c8f5150303854898ff6038bf97712ef48f9 /src
parent11ec71fe19b72a35612fa52cef5c25760e487d7d (diff)
downloadpython-dmidecode-bc5647310466c6f4409bc195e5abf32710abedfa.tar.gz
python-dmidecode-bc5647310466c6f4409bc195e5abf32710abedfa.tar.xz
python-dmidecode-bc5647310466c6f4409bc195e5abf32710abedfa.zip
Removed a printf() comment.
git-svn-id: svn://svn.autonomy.net.au/python-dmidecode@125 abc39116-655e-4be6-ad55-d661dc543056
Diffstat (limited to 'src')
-rw-r--r--src/dmidecodemodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dmidecodemodule.c b/src/dmidecodemodule.c
index a37344d..3214308 100644
--- a/src/dmidecodemodule.c
+++ b/src/dmidecodemodule.c
@@ -94,7 +94,7 @@ static PyObject* dmidecode_get(PyObject *self, const char* section) {
/* Read from dump if so instructed */
if(opt.dumpfile != NULL) {
const char *dumpfile = PyString_AS_STRING(opt.dumpfile);
- printf("Reading SMBIOS/DMI data from file %s.\n", dumpfile);
+ //. printf("Reading SMBIOS/DMI data from file %s.\n", dumpfile);
if((buf = mem_chunk(0, 0x20, dumpfile))!=NULL) {
if(memcmp(buf, "_SM_", 4)==0) {
if(smbios_decode(buf, dumpfile, pydata)) found++;