fixed a typo
authorkramm <kramm>
Wed, 12 Nov 2008 10:31:25 +0000 (10:31 +0000)
committerkramm <kramm>
Wed, 12 Nov 2008 10:31:25 +0000 (10:31 +0000)
lib/devices/rescale.c

index b7712d5..17750a3 100644 (file)
@@ -329,6 +329,6 @@ void gfxdevice_rescale_setdevice(gfxdevice_t*dev, gfxdevice_t*out)
 gfxdevice_t* gfxdevice_rescale_new(gfxdevice_t*out, int width, int height, double scale)
 {
     gfxdevice_t* d = (gfxdevice_t*)malloc(sizeof(gfxdevice_t));
-    gfxdevice_recale_init(d, out, width, height, scale);
+    gfxdevice_rescale_init(d, out, width, height, scale);
     return d;
 }