[GRASS-SVN] r35270 - grass/trunk/lib/ogsf
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Jan 7 14:21:30 EST 2009
Author: glynn
Date: 2009-01-07 14:21:30 -0500 (Wed, 07 Jan 2009)
New Revision: 35270
Modified:
grass/trunk/lib/ogsf/gsd_img_mpeg.c
Log:
Fix bug (pass pointer, not its address)
Modified: grass/trunk/lib/ogsf/gsd_img_mpeg.c
===================================================================
--- grass/trunk/lib/ogsf/gsd_img_mpeg.c 2009-01-07 18:45:04 UTC (rev 35269)
+++ grass/trunk/lib/ogsf/gsd_img_mpeg.c 2009-01-07 19:21:30 UTC (rev 35270)
@@ -436,7 +436,7 @@
if (!(fmt->flags & AVFMT_NOFILE)) {
/* close the output file */
- url_fclose(&oc->pb);
+ url_fclose(oc->pb);
}
/* free the stream */
More information about the grass-commit
mailing list