aboutsummaryrefslogtreecommitdiff
path: root/src/survive_driverman.c
diff options
context:
space:
mode:
authorcnlohr <lohr85@gmail.com>2018-04-24 20:03:31 -0400
committercnlohr <lohr85@gmail.com>2018-04-24 20:03:31 -0400
commita5ab35527062617c21fdcd31305d1e0b8ed1d267 (patch)
treea74bd673c9c6587a931f9dc9fb084484ed213b3e /src/survive_driverman.c
parenta1bcc011b227f5c68f3e42d4f41a40683680be3a (diff)
downloadlibsurvive-a5ab35527062617c21fdcd31305d1e0b8ed1d267.tar.gz
libsurvive-a5ab35527062617c21fdcd31305d1e0b8ed1d267.tar.bz2
Pave the way for more, different, interesting devices.
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];