aboutsummaryrefslogtreecommitdiff
path: root/src/survive_driverman.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/survive_driverman.c')
-rw-r--r--src/survive_driverman.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/survive_driverman.c b/src/survive_driverman.c
index ac5d1f6..c43e8ec 100644
--- a/src/survive_driverman.c
+++ b/src/survive_driverman.c
@@ -31,7 +31,6 @@ const char *GetDriverNameMatching(const char *prefix, int place) {
int prefixlen = (int)strlen(prefix);
for (i = 0; i < NrDrivers; i++) {
- fprintf(stderr, "%s %s\n", prefix, DriverNames[i]);
if (strncmp(prefix, DriverNames[i], prefixlen) == 0)
if (0 == (place--))
return DriverNames[i];