From 50dfb884ef98074f52053bd3c7d2333a87f976ad Mon Sep 17 00:00:00 2001 From: kramm Date: Sun, 21 Jan 2007 18:57:26 +0000 Subject: [PATCH] setparameter now always returns true --- lib/devices/file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/devices/file.c b/lib/devices/file.c index 3b83c29..e8cd973 100644 --- a/lib/devices/file.c +++ b/lib/devices/file.c @@ -33,7 +33,7 @@ int file_setparameter(struct _gfxdevice*dev, const char*key, const char*value) { internal_t*i = (internal_t*)dev->internal; fprintf(i->fi, "setparameter %s=%s\n", key, value); - return 0; + return 1; } void file_startpage(struct _gfxdevice*dev, int width, int height) -- 1.7.10.4