From 0e7a1f63225970c19fd612113bbe2ff51fd47011 Mon Sep 17 00:00:00 2001 From: mmdolze Date: Sun, 14 Dec 2008 23:38:42 +0000 Subject: [PATCH] Fix previous parameter renaming. --- server/driver.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/server/driver.c b/server/driver.c index dac0861..5c5efef 100644 --- a/server/driver.c +++ b/server/driver.c @@ -433,8 +433,8 @@ driver_alt_vbar(Driver *drv, int x, int y, int len, int promille, int options) { int pos; - debug(RPT_DEBUG, "%s(drv=[%.40s], x=%d, y=%d, len=%d, promille=%d, pattern=%d)", - __FUNCTION__, drv->name, x, y, len, promille, pattern); + debug(RPT_DEBUG, "%s(drv=[%.40s], x=%d, y=%d, len=%d, promille=%d, options=%d)", + __FUNCTION__, drv->name, x, y, len, promille, options); /* if the driver does not support output, do nothing */ if (drv->chr == NULL) @@ -464,8 +464,8 @@ driver_alt_hbar(Driver *drv, int x, int y, int len, int promille, int options) { int pos; - debug(RPT_DEBUG, "%s(drv=[%.40s], x=%d, y=%d, len=%d, promille=%d, pattern=%d)", - __FUNCTION__, drv->name, x, y, len, promille, pattern); + debug(RPT_DEBUG, "%s(drv=[%.40s], x=%d, y=%d, len=%d, promille=%d, options=%d)", + __FUNCTION__, drv->name, x, y, len, promille, options); /* if the driver does not support output, do nothing */ if (drv->chr == NULL)