Removed superfluous debug messages

This commit is contained in:
Michael Chisholm 2008-12-01 23:57:00 +00:00
parent 71b1b585b8
commit aa0d8773da

View File

@ -256,14 +256,8 @@ PARTITION* _FAT_partition_getPartitionFromPath (const char* path) {
devops = GetDeviceOpTab (path); devops = GetDeviceOpTab (path);
if (!devops) { if (!devops) {
#ifdef FAT_DEBUG
iprintf ("\n%s %d\n", __FILE__, __LINE__);
#endif
return NULL; return NULL;
} }
#ifdef FAT_DEBUG
iprintf ("\n%s %d\n", __FILE__, __LINE__);
#endif
return (PARTITION*)devops->deviceData; return (PARTITION*)devops->deviceData;
} }