diff options
Diffstat (limited to 'sci-biology/piler/files/piler-1.0-glibc-2.10.patch')
-rw-r--r-- | sci-biology/piler/files/piler-1.0-glibc-2.10.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sci-biology/piler/files/piler-1.0-glibc-2.10.patch b/sci-biology/piler/files/piler-1.0-glibc-2.10.patch new file mode 100644 index 000000000000..4c7f124c5e3d --- /dev/null +++ b/sci-biology/piler/files/piler-1.0-glibc-2.10.patch @@ -0,0 +1,12 @@ +diff -ur piler.orig/gff.cpp piler/gff.cpp +--- piler.orig/gff.cpp 2004-12-18 01:25:29.000000000 +0200 ++++ piler/gff.cpp 2009-08-09 17:22:33.000000000 +0300 +@@ -70,7 +70,7 @@ + const char *Attrs = Fields[8];
+
+ // Truncate attrs if comment found
+- char *Pound = strchr(Attrs, '#');
++ char *Pound = const_cast <char*> (strchr(Attrs, '#'));
+ if (0 != Pound)
+ *Pound = 0;
+
|