summaryrefslogtreecommitdiff
path: root/console-client/driver.c
diff options
context:
space:
mode:
Diffstat (limited to 'console-client/driver.c')
-rw-r--r--console-client/driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/console-client/driver.c b/console-client/driver.c
index 64078241..7a55bbe4 100644
--- a/console-client/driver.c
+++ b/console-client/driver.c
@@ -130,7 +130,7 @@ error_t driver_add (const char *const name, const char *const driver,
shobj = dlopen (filename, RTLD_LAZY);
if (!shobj)
{
- const char *errstring = dlerror (); /* Must always call or it leaks! */
+ (void) dlerror (); /* Must always call or it leaks! */
if (errno != ENOENT)
{
free (filename);