From: kramm Date: Sun, 21 Jan 2007 18:57:26 +0000 (+0000) Subject: setparameter now always returns true X-Git-Tag: release-0-8-0~30 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=50dfb884ef98074f52053bd3c7d2333a87f976ad setparameter now always returns true --- 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)