changeset 23219:cdf6ab5cf76d

Fix "inline keyword not at beginning of declaration" warning.
author diego
date Sat, 05 May 2007 12:45:32 +0000
parents e08bcb7742a5
children db5d7b8e3e81
files libmpcodecs/vf_geq.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libmpcodecs/vf_geq.c	Sat May 05 02:34:46 2007 +0000
+++ b/libmpcodecs/vf_geq.c	Sat May 05 12:45:32 2007 +0000
@@ -79,7 +79,7 @@
     mpi->flags|=MP_IMGFLAG_DIRECT;
 }
 
-static double inline getpix(struct vf_instance_s* vf, double x, double y, int plane){
+static inline double getpix(struct vf_instance_s* vf, double x, double y, int plane){
     int xi, yi;
     mp_image_t *mpi= vf->priv->mpi;
     int stride= mpi->stride[plane];