updated on Sat Jan 14 00:11:12 UTC 2012
[aur-mirror.git] / intel2gas / intel2gas.cc.patch
blobc835527590be21f45c801b5f3cb36188ed95f5c9
1 --- intel2gas.cc.orig 2000-11-14 19:34:13.000000000 +0100
2 +++ intel2gas.cc 2010-01-14 11:33:40.735510043 +0100
3 @@ -446,7 +446,7 @@
5 match.at = NULL;
6 for (int c=0; c<comments; c++) {
7 - char *pos = strstr(source, comment[c].src);
8 + char *pos = (char *)strstr(source, comment[c].src);
9 if (!match.at || (pos && pos < match.at)) {
10 match.at = pos;
11 match.data = &comment[c];