diff options
-rwxr-xr-x | autogen.sh | 4 | ||||
-rw-r--r-- | src/libreal/xine_decoder.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/autogen.sh b/autogen.sh index a47706e0d..42dcbf082 100755 --- a/autogen.sh +++ b/autogen.sh @@ -18,7 +18,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA # -# $Id: autogen.sh,v 1.9 2003/02/28 21:13:24 jkeil Exp $ +# $Id: autogen.sh,v 1.10 2003/07/19 00:08:58 komadori Exp $ # # Maintained by Stephen Torri <storri@users.sourceforge.net> # @@ -112,7 +112,7 @@ detect_libtool() { NUM_RESULT=$# RESULT_FILE=$3 if [ $RETVAL -eq 0 -a $NUM_RESULT -eq 3 -a -f "$RESULT_FILE" ]; then - LT="`libtool --version | awk '{ print $4 }' | sed -e 's/[a-zA-Z\ \.\(\)\-]//g'`" + LT="`libtool --version | awk '{ print $4 }' | sed -e 's/[a-zA-Z\ \.\(\)\-;]//g'`" LIBTOOL_MIN="`echo $LIBTOOL_MIN | sed -e 's/[a-zA-Z\ \.\(\)\-]//g'`" if test $LT -lt 100 ; then LT=`expr $LT \* 10` diff --git a/src/libreal/xine_decoder.c b/src/libreal/xine_decoder.c index 661b50e44..e61d401c0 100644 --- a/src/libreal/xine_decoder.c +++ b/src/libreal/xine_decoder.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine_decoder.c,v 1.44 2003/07/18 23:37:38 jstembridge Exp $ + * $Id: xine_decoder.c,v 1.45 2003/07/19 00:08:58 komadori Exp $ * * thin layer to use real binary-only codecs in xine * @@ -272,7 +272,7 @@ static int init_codec (realdec_decoder_t *this, buf_element_t *buf) { } static void realdec_copy_frame (realdec_decoder_t *this, uint8_t *base[3], int pitches[3]) { - uint_fast32_t i, j; + uint_t i, j; uint8_t *src, *dst; src = this->frame_buffer; |