From aa0d8773dad3b79d503102eb40e390ceb0cc520f Mon Sep 17 00:00:00 2001 From: Michael Chisholm Date: Mon, 1 Dec 2008 23:57:00 +0000 Subject: [PATCH] Removed superfluous debug messages --- source/partition.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/source/partition.c b/source/partition.c index 36a8303..84addd8 100644 --- a/source/partition.c +++ b/source/partition.c @@ -256,14 +256,8 @@ PARTITION* _FAT_partition_getPartitionFromPath (const char* path) { devops = GetDeviceOpTab (path); if (!devops) { -#ifdef FAT_DEBUG - iprintf ("\n%s %d\n", __FILE__, __LINE__); -#endif return NULL; } -#ifdef FAT_DEBUG - iprintf ("\n%s %d\n", __FILE__, __LINE__); -#endif return (PARTITION*)devops->deviceData; }