diff options
Diffstat (limited to 'multimedia/mjpegtools/patches/patch-af')
-rw-r--r-- | multimedia/mjpegtools/patches/patch-af | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/multimedia/mjpegtools/patches/patch-af b/multimedia/mjpegtools/patches/patch-af deleted file mode 100644 index 3f1b455476b..00000000000 --- a/multimedia/mjpegtools/patches/patch-af +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: patch-af,v 1.4 2011/01/29 20:31:19 markd Exp $ - -Fix build with gcc4.5 - ---- mplex/lpcmstrm_in.cpp.orig 2011-01-24 10:42:48.023875210 +0000 -+++ mplex/lpcmstrm_in.cpp -@@ -53,7 +53,7 @@ LPCMStream::LPCMStream(IBitStream &ibs, - - bool LPCMStream::Probe(IBitStream &bs ) - { -- char *last_dot = strrchr( bs.StreamName(), '.' ); -+ const char *last_dot = strrchr( bs.StreamName(), '.' ); - return - last_dot != NULL - && strcmp( last_dot+1, "lpcm") == 0; |