From bc5647310466c6f4409bc195e5abf32710abedfa Mon Sep 17 00:00:00 2001 From: nima Date: Fri, 19 Dec 2008 13:32:35 +0000 Subject: Removed a printf() comment. git-svn-id: svn://svn.autonomy.net.au/python-dmidecode@125 abc39116-655e-4be6-ad55-d661dc543056 --- src/dmidecodemodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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++; -- cgit